JavaScript is required. Please enable it to continue.
Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
<div style="font-size: 8pt"><i>By MariaMod</i></div>
<<variablesCheckWidget>> <<dayChangeWidget>> <<timeWidget>> <<dollClothesWidget>> <strong>$showHour:$showMinute</strong> <br /> <u>$dayOfWeek</u> <br /> <br /> <p style="color: gold; font-size: 20px">¤ $charMoney</p><br /> <p style="color: royalBlue; font-size: 19px">Energy: $charEnergy</p><br /> <<include "PaperDoll">> <br /> <br /> <br /> <br /><p style="font-size: 10pt; display: inline">v1.0.0<sup><<link "?">><<set $pastPassage = passage()>><<goto "Changelog">><</link>></sup></p> <<script>> if (Save.ok() && Save.slots.ok() && turns() % 11 == 0) { console.log(Save.get()); console.log("Available slots: " + Save.slots.length); console.log("Filled slots: " + Save.slots.count()); console.log("Get the first slot: " + Save.slots.get(0)); console.log("If the first log filled? " + Save.slots.has(0)); console.log("Do we have any filled slots? " + Save.slots.isEmpty()); Save.slots.save(0, "AUTOSAVE", {"ki": "velu"}); console.log(Save.get()); console.log("Available slots: " + Save.slots.length); console.log("Filled slots: " + Save.slots.count()); console.log("Get the first slot: " + Save.slots.get(0)); console.log("If the first log filled? " + Save.slots.has(0)); console.log("Do we have any filled slots? " + Save.slots.isEmpty()); } <</script>>
<!-- ------ GLOBAL VARIABLES ------ --> <<set $dayOfWeek = "Monday">> <<set $day = 0>> <<set $hour = 8>> <<set $minute = 0>> <!-- ------ CHAR STATS ------ --> <<set $charMoney = 100>> <<set $charEnergy = 100>> <<set $charCorruption = 0>> <<set $charBreastsSize = 0>> <<set $charGenitals = "Penis">> <<set $charHair = "Hair1">> <!-- ------ CHAR CLOTHES ------ --> <<set $charClothesEarrings = "">> <<set $charClothesPanties = "BoyPanties">> <<set $charClothesBra = "">> <<set $charClothesStockings = "ShortSocks">> <<set $charClothesShoes = "Sneakers">> <<set $charClothesBottom = "Jeans">> <<set $charClothesTop = "T-Shirt">> <!-- ------ BEDROOM ------ --> <<set $bedroomMain = "BlueRoom">> <<set $bedroomBiFlag = "">> <<set $bedroomGayFlag = "">> <<set $bedroomTransFlag = "">> <<set $bedroomBunnySticker = "">> <<set $bedroomBunnyWallSticker = "">> <<set $bedroomSkullSticker = "">> <<set $bedroomChairDildo = "">> <<set $bedroomLollipop = "">> <<set $bedroomMagicWand = "">> <<set $bedroomSLUTWordChair = "">> <<set $bedroomVibrator = "">> <!-- ------ BUG PLUGS ------ --> <<dollClothesWidget>>
<<script>> Setting.addHeader("Game settings"); Setting.addToggle("isBestialityAllowed", { label: "Allow hentai bestiality content in the game", default: false, }); <</script>>
<<if passage() == "Backpack" or passage() == "Cheat">> <<link "Back">><<goto $pastPassage>><</link>> <<else>> [[Backpack][$pastPassage to passage()]] [[Cheat][$pastPassage to passage()]] <<endif>>
Hello, people! My name is MilkyNail (previously - MariaMod) and I just wanted to make another game about different perversions, aaand... here it is! <<button "~ START BUTTON ~" "SLAT Document">><</button>> By clicking this button you approve that you <u>21yo</u> and accept <u>sissy, gay, transformation</u> content (all characters are 18+, sure, officer). Yeah, that's a disclaimer. <!-- <a href="https://Patreon.com/................" target="_blank"><img class="patreon_button" src="https://MilkyNail.site/SLATPics/Patreon.png" alt="https://Patreon.com/MariaMod" /></a> --><a href="https://SubscribeStar.adult/MariaMod" target="_blank"><img class="subscribestar_button" src="https://MilkyNail.site/SLATPics/SubscribeStar.png" alt="https://SubscribeStar.adult/MariaMod" /></a><!-- <a href="https://discord.gg/GC37yVQ" target="_blank"><img class="discord_button" src="https://MilkyNail.site/SLATPics/Discord.png" alt="https://discord.gg/GC37yVQ" /></a> --> Always up-to-date online version on my site: http://MilkyNail.site/slat.html
Stats: > Corruption - $corruption Items:
<<link "+5 corruption">><<set $corruption += 5>><<goto "Cheat">><</link>> <<link "+10 money">><<set $money += 10>><<goto "Cheat">><</link>>
<u><strong>v1.0.0</strong></u> <strong>Changes:</strong> - The base is built! <<link "Back">><<goto $pastPassage>><</link>>
<<widget "timeWidget">><<nobr>> <<if $minute >= 60>> <<set $hour += 1>> <<set $minute = 0>> <<endif>> <<if $hour < 10>> <<set $showHour = '0' + $hour>> <<else>> <<set $showHour = $hour>> <<endif>> <<if $minute < 10>> <<set $showMinute = '0' + $minute>> <<else>> <<set $showMinute = $minute>> <<endif>> <<if $hour > 19 or $hour < 7>> <<set $timeOfDay = "Day">> <<else>> <<set $timeOfDay = "Night">> <<endif>> <</nobr>><</widget>> <<widget "dayChangeWidget">><<nobr>> <<if $dayOfWeek == "Monday" && $hour > 23>> <<set $dayOfWeek = "Tuesday">> <<set $day += 1>> <<set $hour -= 24>> <<elseif $dayOfWeek == "Tuesday" && $hour > 23>> <<set $dayOfWeek = "Wednesday">> <<set $day += 1>> <<set $hour -= 24>> <<elseif $dayOfWeek == "Wednesday" && $hour > 23>> <<set $dayOfWeek = "Thursday">> <<set $day += 1>> <<set $hour -= 24>> <<elseif $dayOfWeek == "Thursday" && $hour > 23>> <<set $dayOfWeek = "Friday">> <<set $day += 1>> <<set $hour -= 24>> <<elseif $dayOfWeek == "Friday" && $hour > 23>> <<set $dayOfWeek = "Saturday">> <<set $day += 1>> <<set $hour -= 24>> <<elseif $dayOfWeek == "Saturday" && $hour > 23>> <<set $dayOfWeek = "Sunday">> <<set $day += 1>> <<set $hour -= 24>> <<elseif $dayOfWeek == "Sunday" && $hour > 23>> <<set $dayOfWeek = "Monday">> <<set $day += 1>> <<set $hour -= 24>> <<endif>> <</nobr>><</widget>> <<widget "variablesCheckWidget">><<nobr>> <<if $charMoney < 0>> <<set $charMoney = 0>> <<endif>> <<if $charEnergy > 100>> <<set $charEnergy = 100>> <<elseif $charEnergy < 0>> <<set $charEnergy = 0>> <<endif>> <</nobr>><</widget>>
<div style="position: relative; top: 0; left: 0"> <div id="DollMainBody"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollMainBody + ".png")]] </div> <div id="DollGenitals"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollGenitals + ".png")]] </div> <div id="DollBreasts"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollBodyBreasts + ".png")]] </div> <div id="DollEarrings"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollEarrings + ".png")]] </div> <div id="DollPanties"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollPanties + ".png")]] </div> <div id="DollBra"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollBra + ".png")]] </div> <div id="DollStockings"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollStockings + ".png")]] </div> <div id="DollShoes"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollShoes + ".png")]] </div> <div id="DollBottom"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollBottom + ".png")]] </div> <div id="DollTop"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollTop + $dollTopBreasts + ".png")]] </div> <div id="DollHair"> [img[String.format("https://MilkyNail.site/SLATPics/PaperDoll/" + $dollHair + ".png")]] </div> </div>
<<widget "dollClothesWidget">> <<set $dollMainBody = "MainBody">> <<set $dollGenitals = $charGenitals>> <<set $dollEarrings = $charClothesEarrings>> <<set $dollPanties = $charClothesPanties>> <<set $dollBra = $charClothesBra>> <<set $dollStockings = $charClothesStockings>> <<set $dollShoes = $charClothesShoes>> <<set $dollBottom = $charClothesBottom>> <<set $dollTop = $charClothesTop>> <<set $dollHair = $charHair>> <<if $charBreastsSize == 0>> <<set $dollTopBreasts = "Breasts0">> <<set $dollBodyBreasts = "Breasts0">> <<elseif $charBreastsSize == 1>> <<set $dollTopBreasts = "Breasts1">> <<set $dollBodyBreasts = "Breasts1">> <<elseif $charBreastsSize == 2>> <<set $dollTopBreasts = "Breasts2">> <<set $dollBodyBreasts = "Breasts2">> <<elseif $charBreastsSize == 3>> <<set $dollTopBreasts = "Breasts3">> <<set $dollBodyBreasts = "Breasts3">> <<endif>> <<if $dollTop == "">> <<set $dollTopBreasts = "">> <<endif>> <<if $dollBra != "" or $dollTop != "">> <<set $dollBodyBreasts = "">> <<endif>> <<if $dollPanties != "" or $dollBottom != "">> <<set $dollGenitals = "">> <<endif>> <<if $dollBottom == "Jeans" and $dollStockings == "Stockings">> <<set $dollStockings = "">> <<endif>> <</widget>>
<hr> Our organization is a private company engaged in mediation between the state / third parties who are our customers (hereinafter simply referred to as customers) and private individuals. As part of our core business, we provide individuals with the following services: 1) Financial, psychological, physiological support; 2) The possibility of employment and part-time work; 3) Medical support; 4) Providing a place to stay. In exchange, our company will monitor you and transmit this data to customers. Also, customers will have the opportunity to hire you as part of our main program. Following the decree of the director, we inform you that this company was founded as part of the state program for the study of demographic management. <hr> <<button "Turn the page" "Character creation">><</button>>
<hr> Your first name: <<textbox "$charFirstName" "Mike" autofocus>> Your second name: <<textbox "$charSecondName" "Richardson">> Your age<sup><u><p title="Only 18+ or 21+, depends on the law in your country">?</p></u></sup>: <<textbox "$charAge" "18">> <hr> <<button "Sign below and pass to a secretary" "Sign below and pass to a secretary">><</button>>
<<if $charAge < 18>>You can't be younger than 18<<else>>You gave the filled up document to a secretary, who took it and stood up, giving you a sign todo the same. "Okay, Mr. $charSecongName, follow me" She walked away from the office and made her way to the lift, leading you to the second floor. There was a hallway with rooms, like in hotel. "You are a customer number 5. That's your personal apartment" She gave you the plactic card and you opened the door with a gold sign №5. Inside you found several neat rooms with everything that a person might need. "Make yourself at home, Mr. $charSecondName! And read this, please" She gave you a brochure with a girl's ahegao face on it before she left you. Hmm.. You bet this is not a girl's face. <<button "Read the brochure" "Read the brochure">><</button>> <<endif>>
You open it. The upper half of first page was taken by a big picture of the same trap, sitting on her knees half-turn. She was wearing a white crop-top, that covers her little perky tits with erected nipples, and a pink short skirt. She was winking with a playful smile. The text below tells us: "Heyo, my new friend! My name is Niki and I'm one of your teachers in this big, new to you world of lewd desires~ Let me tell you the schedule: 9:00 - Wake up 10:00-11:00 - Mind changing lesson 11:00-12:00 - Feminization lesson 12:00-13:00 - Sex lesson 13:00-14:00 - Medical care 14:00-23:00 - Free time 23:00 - Sleep Our directors want us to be healthy and well-trained, so you'll get used to it very soon! And also, we use here a rank system. You start with 0 rank and 0 exp points and slowly raise them, doing naughty stuff;3 Sissies with high rank may change something in their lifes. For example, when you will get the 1 rank you will be able to change your name. And when reach the 10 rank - transform your penis into pussy! And the third thing I want to tell you: every student has their own stud. I bet you know what for:3 He will train you good and hard whenever you need this~ Sure thing, he is friendly and a pro. And black. We hope you don't mind this:)" The last page had these big pink words: "PROGRAM S.L.A.T SISSY LEARNING AND TRAINING" [[Put the brochure onto table and go to bedroom->Bedroom]] <<button "Put the brochure onto table and go to bedroom" "Bedroom">><</button>>
<div align="center" style="font-size: 40px">Bedroom</div> <<bedroomDollWidget>><<include "Bedroom PaperDoll">> [[Wardrobe]]
<div style="position: relative; top: 0; left: 0"> <div id="BedroomDollMain"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollMain + ".png")]] </div> <div id="BedroomDollBiFlag"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollBiFlag + ".png")]] </div> <div id="BedroomDollGayFlag"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollGayFlag + ".png")]] </div> <div id="BedroomDollTransFlag"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollTransFlag + ".png")]] </div> <div id="BedroomDollBunnySticker"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollBunnySticker + ".png")]] </div> <div id="BedroomDollBunnyWallSticker"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollBunnyWallSticker + ".png")]] </div> <div id="BedroomDollSkullSticker"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollSkullSticker + ".png")]] </div> <div id="BedroomDollChairDildo"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollChairDildo + ".png")]] </div> <div id="BedroomDollLollipop"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollLollipop + ".png")]] </div> <div id="BedroomDollMagicWand"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollMagicWand + ".png")]] </div> <div id="BedroomDollSLUTWordChair"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollSLUTWordChair + ".png")]] </div> <div id="BedroomDollVibrator"> [img[String.format("https://MilkyNail.site/SLATPics/BedroomPaperDoll/" + $bedroomDollVibrator + ".png")]] </div> </div>
<<widget "bedroomDollWidget">> <<set $bedroomDollMain = $bedroomMain>> <<set $bedroomDollBiFlag = $bedroomBiFlag>> <<set $bedroomDollGayFlag = $bedroomGayFlag>> <<set $bedroomDollTransFlag = $bedroomTransFlag>> <<set $bedroomDollBunnySticker = $bedroomBunnySticker>> <<set $bedroomDollBunnyWallSticker = $bedroomBunnyWallSticker>> <<set $bedroomDollSkullSticker = $bedroomSkullSticker>> <<set $bedroomDollChairDildo = $bedroomChairDildo>> <<set $bedroomDollLollipop = $bedroomLollipop>> <<set $bedroomDollMagicWand = $bedroomMagicWand>> <<set $bedroomDollSLUTWordChair = $bedroomSLUTWordChair>> <<set $bedroomDollVibrator = $bedroomVibrator>> <</widget>>
Earrings: <<if $charClothesEarrings != "Earrings">><<link "Earrings">><<set $charClothesEarrings = "Earrings">><<goto "Wardrobe">><</link>><<else>>Earrings<<endif>> | <<if $charClothesEarrings != "">><<link "None">><<set $charClothesEarrings = "">><<goto "Wardrobe">><</link>><<else>>None<<endif>> Top: <<if $charClothesTop != "T-Shirt">><<link "T-Shirt">><<set $charClothesTop = "T-Shirt">><<goto "Wardrobe">><</link>><<else>>T-Shirt<<endif>> | <<if $charClothesTop != "Tank">><<link "Tank">><<set $charClothesTop = "Tank">><<goto "Wardrobe">><</link>><<else>>Tank<<endif>> | <<if $charClothesTop != "">><<link "None">><<set $charClothesTop = "">><<goto "Wardrobe">><</link>><<else>>None<<endif>> Bra: <<if $charClothesBra != "PinkBra">><<link "Pink bra">><<set $charClothesBra = "PinkBra">><<goto "Wardrobe">><</link>><<else>>Pink bra<<endif>> | <<if $charClothesBra != "">><<link "None">><<set $charClothesBra = "">><<goto "Wardrobe">><</link>><<else>>None<<endif>> Bottom: <<if $charClothesBottom != "Jeans">><<link "Jeans">><<set $charClothesBottom = "Jeans">><<goto "Wardrobe">><</link>><<else>>Jeans<<endif>> | <<if $charClothesBottom != "ShortShorts">><<link "Short shorts">><<set $charClothesBottom = "ShortShorts">><<goto "Wardrobe">><</link>><<else>>Short shorts<<endif>> | <<if $charClothesBottom != "MiniSkirt">><<link "Mini skirt">><<set $charClothesBottom = "MiniSkirt">><<goto "Wardrobe">><</link>><<else>>Mini skirt<<endif>> | <<if $charClothesBottom != "">><<link "None">><<set $charClothesBottom = "">><<goto "Wardrobe">><</link>><<else>>None<<endif>> Panties: <<if $charClothesPanties != "BoyPanties">><<link "Boy underwear">><<set $charClothesPanties = "BoyPanties">><<goto "Wardrobe">><</link>><<else>>Boy underwear<<endif>> | <<if $charClothesPanties != "PinkPanties">><<link "Pink panties">><<set $charClothesPanties = "PinkPanties">><<goto "Wardrobe">><</link>><<else>>Pink panties<<endif>> | <<if $charClothesPanties != "">><<link "None">><<set $charClothesPanties = "">><<goto "Wardrobe">><</link>><<else>>None<<endif>> Stockings: <<if $charClothesStockings != "ShortSocks">><<link "Short socks">><<set $charClothesStockings = "ShortSocks">><<goto "Wardrobe">><</link>><<else>>Short socks<<endif>> | <<if $charClothesStockings != "Stockings">><<link "Stockings">><<set $charClothesStockings = "Stockings">><<goto "Wardrobe">><</link>><<else>>Stockings<<endif>> | <<if $charClothesStockings != "">><<link "None">><<set $charClothesStockings = "">><<goto "Wardrobe">><</link>><<else>>None<<endif>> Shoes: <<if $charClothesShoes != "Sneakers">><<link "Sneakers">><<set $charClothesShoes = "Sneakers">><<goto "Wardrobe">><</link>><<else>>Sneakers<<endif>> | <<if $charClothesShoes != "HighHeels">><<link "High heels">><<set $charClothesShoes = "HighHeels">><<goto "Wardrobe">><</link>><<else>>High heels<<endif>> | <<if $charClothesShoes != "">><<link "None">><<set $charClothesShoes = "">><<goto "Wardrobe">><</link>><<else>>None<<endif>> Character change: Hair - <<if $charHair != "Hair1">><<link "1">><<set $charHair = "Hair1">><<goto "Wardrobe">><</link>><<else>>1<<endif>> | <<if $charHair != "Hair2">><<link "2">><<set $charHair = "Hair2">><<goto "Wardrobe">><</link>><<else>>2<<endif>> | <<if $charHair != "Hair3">><<link "3">><<set $charHair = "Hair3">><<goto "Wardrobe">><</link>><<else>>3<<endif>> | <<if $charHair != "Hair4">><<link "4">><<set $charHair = "Hair4">><<goto "Wardrobe">><</link>><<else>>4<<endif>> | <<if $charHair != "Hair5">><<link "5">><<set $charHair = "Hair5">><<goto "Wardrobe">><</link>><<else>>5<<endif>> Breasts - <<if $charBreastsSize != 0>><<link "0">><<set $charBreastsSize = 0>><<goto "Wardrobe">><</link>><<else>>0<<endif>> | <<if $charBreastsSize != 1>><<link "1">><<set $charBreastsSize = 1>><<goto "Wardrobe">><</link>><<else>>1<<endif>> | <<if $charBreastsSize != 2>><<link "2">><<set $charBreastsSize = 2>><<goto "Wardrobe">><</link>><<else>>2<<endif>> | <<if $charBreastsSize != 3>><<link "3">><<set $charBreastsSize = 3>><<goto "Wardrobe">><</link>><<else>>3<<endif>> Genitals - <<if $charGenitals != "Penis">><<link "Penis">><<set $charGenitals = "Penis">><<goto "Wardrobe">><</link>><<else>>Penis<<endif>> | <<if $charGenitals != "Vagina">><<link "Vagina">><<set $charGenitals = "Vagina">><<goto "Wardrobe">><</link>><<else>>Vagina<<endif>> [[Back->Bedroom]]
Room change: - <<if $bedroomMain == "BlueRoom">><<link "Paint wall (Pink)">><<set $bedroomMain = "PinkRoom">><<goto "Bedroom">><</link>><<else>><<link "Paint wall (Blue)">><<set $bedroomMain = "BlueRoom">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomBiFlag == "">><<link "Attach Bi flag">><<set $bedroomBiFlag = "BiFlag">><<goto "Bedroom">><</link>><<else>><<link "Remove Bi flag">><<set $bedroomBiFlag = "">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomGayFlag == "">><<link "Attach Gay flag">><<set $bedroomGayFlag = "GayFlag">><<goto "Bedroom">><</link>><<else>><<link "Remove Gay flag">><<set $bedroomGayFlag = "">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomTransFlag == "">><<link "Attach Trans flag">><<set $bedroomTransFlag = "TransFlag">><<goto "Bedroom">><</link>><<else>><<link "Remove Trans flag">><<set $bedroomTransFlag = "">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomBunnySticker == "">><<link "Attach Bunny sticker">><<set $bedroomBunnySticker = "BunnySticker">><<goto "Bedroom">><</link>><<else>><<link "Remove Bunny sticker">><<set $bedroomBunnySticker = "">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomBunnyWallSticker == "">><<link "Attach Bunny wall sticker">><<set $bedroomBunnyWallSticker = "BunnyWallSticker">><<goto "Bedroom">><</link>><<else>><<link "Remove Bunny wall sticker">><<set $bedroomBunnyWallSticker = "">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomSkullSticker == "">><<link "Attach Skull sticker">><<set $bedroomSkullSticker = "SkullSticker">><<goto "Bedroom">><</link>><<else>><<link "Remove Skull sticker">><<set $bedroomSkullSticker = "">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomChairDildo == "">><<link "Attach chair dildo">><<set $bedroomChairDildo = "ChairDildo">><<goto "Bedroom">><</link>><<else>><<link "Remove chair dildo">><<set $bedroomChairDildo = "">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomLollipop == "">><<link "Add lollipop">><<set $bedroomLollipop = "Lollipop">><<goto "Bedroom">><</link>><<else>><<link "Remove lollipop">><<set $bedroomLollipop = "">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomMagicWand == "">><<link "Add magic wand">><<set $bedroomMagicWand = "MagicWand">><<goto "Bedroom">><</link>><<else>><<link "Remove magic wand">><<set $bedroomMagicWand = "">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomSLUTWordChair == "">><<link "Write who you are on chair">><<set $bedroomSLUTWordChair = "SLUTWordChair">><<goto "Bedroom">><</link>><<else>><<link "Erase the word on chair">><<set $bedroomSLUTWordChair = "">><<goto "Bedroom">><</link>><<endif>> - <<if $bedroomVibrator == "">><<link "Add vibrator">><<set $bedroomVibrator = "Vibrator">><<goto "Bedroom">><</link>><<else>><<link "Remove vibrator">><<set $bedroomVibrator = "">><<goto "Bedroom">><</link>><<endif>>