diff --git a/src/facilities/wardrobe/wardrobe.tw b/src/facilities/wardrobe/wardrobe.tw new file mode 100644 index 0000000000000000000000000000000000000000..56636db39ef96275968236cfa04b805d00db57ac --- /dev/null +++ b/src/facilities/wardrobe/wardrobe.tw @@ -0,0 +1,5 @@ +:: Wardrobe [nobr jump-to-safe jump-from-safe] + +<<set $nextButton = "Back", $nextLink = "Manage Penthouse">> + +<<includeDOM App.UI.WardrobeShopping("FS")>> diff --git a/src/facilities/wardrobe/wardrobeShopping.css b/src/facilities/wardrobe/wardrobeShopping.css new file mode 100644 index 0000000000000000000000000000000000000000..1132d65b924846d754218795725376f76590247b --- /dev/null +++ b/src/facilities/wardrobe/wardrobeShopping.css @@ -0,0 +1,12 @@ +.wardrobe-shopping-block { + display: flex; + flex-wrap: wrap; +} + +.wardrobe-shopping-cell { + display: inline-block; + width: 20em; + border: 1px solid var(--button-border-color); +} + +.wardrobe-shopping-cell:hover { background: var(--button-hover-color) } \ No newline at end of file diff --git a/src/facilities/wardrobe/wardrobeShopping.js b/src/facilities/wardrobe/wardrobeShopping.js new file mode 100644 index 0000000000000000000000000000000000000000..fcedafe8efa032b3c42f5c9b85a46ba92d537621 --- /dev/null +++ b/src/facilities/wardrobe/wardrobeShopping.js @@ -0,0 +1,215 @@ +App.UI.WardrobeShopping = function() { + const el = document.createElement("p"); + let p; + el.id = "wardrobe-shopping"; + + App.UI.DOM.appendNewElement("H1", el, `Slave Wardrobe`); + + let r = []; + r.push(`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 they be allowed to dress themselves. The selection includes`); + const ownItAll = ( + App.Data.misc.niceClothes.every((i) => isItemAccessible.entry(i.value, "clothing")) && + App.Data.misc.harshClothes.every((i) => isItemAccessible.entry(i.value, "clothing")) + ); + if (ownItAll) { + r.push(`outfits from all manner of cultures and societies; not a single style eludes you.`); + } else { + r.push(`many styles of clothing ranging from exciting to mundane and sexy to practical.`); + } + if (V.boughtItem.shoes.heels === 1) { + r.push(`A large variety of shoes are available to select from.`); + } + if (V.boughtItem.clothing.dildos === 1 && V.boughtItem.toys.gags === 1 && V.boughtItem.clothing.buttPlugs === 1) { + r.push(`Sex toys of all kinds and shapes line the shelves.`); + } else if (V.boughtItem.clothing.dildos === 1 || V.boughtItem.toys.gags === 1 || V.boughtItem.clothing.buttPlugs === 1 || V.boughtItem.clothing.buttPlugTails === 1 || V.boughtItem.clothing.vaginalAttachments === 1) { + r.push(`Some sex toys line the shelves.`); + } + if (V.boughtItem.toys.buckets === 1) { + r.push(`Several buckets of various sizes and a sturdy cup have been set aside for you in feeding slaves to their limit.`); + } + if (V.boughtItem.toys.enema === 1) { + r.push(`A number of drums of specially formulated water for use in enemas line one of the walls.`); + } + if (V.boughtItem.toys.medicalEnema === 1) { + r.push(`Alongside them, multiple drums of mixtures for use in medical enemas.`); + } + App.UI.DOM.appendNewElement("p", el, r.join(" "), "scene-intro"); + + + App.UI.DOM.appendNewElement("H2", el, `Future Society styles`); + + el.append(categoryBlock("FS")); + + App.UI.DOM.appendNewElement("H2", el, `Future Society Revivalist styles`); + + el.append(categoryBlock("FSrevivalist")); + + App.UI.DOM.appendNewElement("H2", el, `Other`); + + el.append(categoryBlock("other")); + + App.UI.DOM.appendNewElement("H2", el, `Accessories`); + + p = document.createElement("p"); + p.id = "accessory-block"; + p.append(accessoryBlock()); + el.append(p); + + return el; + + /** + * + * @param {*} category FS, FSrevivalist, or "other" + */ + + function categoryBlock(category) { + const data = App.Data.WardrobeShopping.Clothing[category]; + const model = (V.seeDicks === 100) ? GenerateNewSlave("XY") : GenerateNewSlave("XX"); + + const el = document.createElement("p"); + el.classList.add("wardrobe-shopping-block"); + el.id = `id${category}`; + Object.keys(data).forEach( + (clothing) => { + const cell = document.createElement("span"); + cell.id = clothing; + cell.append(createCell(clothing)); + el.append(cell); + }); + return el; + + /** + * Create individual cell for a piece of clothing, including the display model + * @param {string} clothing + * @param {string} oldOutfit The outfit last worn by the slave. This means that on cycling outfits, we won't immediately repeat + */ + function createCell(clothing, oldOutfit = "") { + const el = document.createElement("div"); + el.classList.add("wardrobe-shopping-cell"); + el.onclick = () => { + // Randomize devotion and trust a bit, so the model moves their arms and "poses" for the player. + model.devotion = random(-10, 70); + model.trust = random(30, 100); + jQuery(`#${clothing}`).empty().append(createCell(clothing, model.clothes)); + }; + /** @type {wardrobeItem} */ + const clothingObj = App.Data.WardrobeShopping.Clothing[category][clothing]; + const cost = Math.trunc(clothingObj.cost * V.upgradeMultiplierTrade); + let div; + + // If we have more than one possible outfit to showcase, make sure not to show the outfit we did last time. + const clothesArray = clothingObj.contains.length > 1 ? clothingObj.contains.filter(item => item !== oldOutfit) : clothingObj.contains; + + // Get a randomly chosen piece of clothing from the set to display + // This piece will also later be checked to see if we can purchase it or not. + model.clothes = clothesArray[Math.floor(Math.random() * clothesArray.length)]; + + if (V.seeImages === 1) { + // Some clothing is weird (looking at you, Egyptian necklace) + if (clothingObj.hasOwnProperty("modelUpdate")) { + Object.assign(model, clothingObj.modelUpdate); + } + + App.UI.DOM.appendNewElement("div", el, App.Art.SlaveArtElement(model, 1, 0), ["imageRef", "smlImg"]); + + // Clean up our model. Fuck you, Egypt. + if (clothingObj.hasOwnProperty("modelUpdate")) { + for (const prop in clothingObj.modelUpdate) { + model[prop] = "none"; + } + } + } + if (clothing !== "egypt" && !isItemAccessible.entry(model.clothes, "clothing") || + (clothing === "egypt" && !isItemAccessible.entry("ancient Egyptian", "collar")) // Fuck Egypt + ) { + if (cost < V.cash) { + App.UI.DOM.appendNewElement( + "div", + el, + App.UI.DOM.link( + `Order ${clothingObj.title}`, + () => { + if (cost < V.cash) { // Check again on click in case the link has become stale + cashX(forceNeg(cost), "capEx"); + V.boughtItem.clothing[clothing] = 1; + } + } + ) + ); + App.UI.DOM.appendNewElement("div", el, ` Costs ¤${cost}`, "detail"); + } else { + div = App.UI.DOM.disabledLink( + `Order ${clothingObj.title}`, + [`Cannot afford ¤${cost}`] + ); + div.style.display = "inline"; // Fixes disabledLink + el.append(div); + App.UI.DOM.appendNewElement("div", el, `Costs ¤${cost}`, ["red", "detail"]); + } + } else { + App.UI.DOM.appendNewElement("div", el, clothingObj.owned); + } + + return el; + } + } + + function accessoryBlock() { + const el = document.createElement("p"); + + for (const name in App.Data.WardrobeShopping.Accessories) { + el.append(createLine(name)); + } + return el; + + function createLine(name) { + const line = document.createElement("div"); + const purchased = _.get(V.boughtItem, name); + const obj = (App.Data.WardrobeShopping.Accessories[name]); + const cost = Math.trunc(obj.cost * V.upgradeMultiplierTrade); + let div = document.createElement("div"); + + if (purchased !== 0 && purchased !== 1) { + throw `${name} set incorrectly or not found`; + } + + if (obj.hasOwnProperty("rs") && obj.rs !== true) { + return line; + } + + if (!purchased) { + if (cost < V.cash) { + div.append( + App.UI.DOM.link( + `Order ${obj.title}`, + () => { + if (cost < V.cash) { // Check again on click in case the link has become stale + cashX(forceNeg(cost), "capEx"); + _.set(V.boughtItem, name, 1); + } + jQuery(`#accessory-block`).empty().append(accessoryBlock()); + } + ) + ); + App.UI.DOM.appendNewElement("span", div, ` Costs ¤${cost}`, "detail"); + } else { + div.append( + App.UI.DOM.disabledLink( + `Order ${obj.title}`, + [`Cannot afford ¤${cost}`] + ) + ); + App.UI.DOM.appendNewElement("span", div, ` Costs ¤${cost}`, ["red", "detail"]); + } + if (obj.hasOwnProperty("note")) { + App.UI.DOM.appendNewElement("span", div, ` ${obj.note}`, "note"); + } + } else { + div.append(obj.owned); + } + line.append(div); + + return line; + } + } +}; diff --git a/src/facilities/wardrobe/wardrobeShoppingData.js b/src/facilities/wardrobe/wardrobeShoppingData.js new file mode 100644 index 0000000000000000000000000000000000000000..0a3f34eb551c4109b2e2ede1d99fe9550ed826d1 --- /dev/null +++ b/src/facilities/wardrobe/wardrobeShoppingData.js @@ -0,0 +1,285 @@ +App.Data.WardrobeShopping = {}; + +App.Data.WardrobeShopping.Clothing = { + /** + * @typedef {object} wardrobeItem + * @property {string} title + * @property {number} cost + * @property {string} [note] italicize note about a purchase + * @property {string[]} contains + * @property {string} owned + * @property {object} [modelUpdate] + * @property {boolean} [rs] requirements met + */ + + /** + * @type {Object.<string, wardrobeItem>} String will be the property checked to see if the item is owned. So for "bunny", it will check V.boughtItem.clothing["bunny"]. + */ + FS: { + "bunny": { + title: "a shipment of bunny suits", + cost: 7500, + contains: ["a bunny outfit"], + owned: "You are well stocked with classic bunny suits and bowties.", + }, + "conservative": { + title: "a shipment of conservative clothes", + cost: 7500, + contains: ["conservative clothing"], + owned: "You are well stocked with modest outfits.", + }, + "bimbo": { + title: "a shipment of outfits suitable for bimbos", + cost: 7500, + contains: ["a bimbo outfit"], + owned: "You are well stocked with bimbo attire.", + }, + "courtesan": { + title: "a shipment of courtesan dresses", + cost: 7500, + contains: ["a courtesan dress"], + owned: "You are well stocked with courtesan dresses.", + }, + "chains": { + title: "a shipment of chains", + cost: 7500, + contains: ["chains"], + owned: "You are well stocked with various lengths of binding chains.", + }, + "western": { + title: "a shipment of western outfits", + cost: 7500, + contains: ["Western clothing"], + owned: "You are well stocked with cowgirl outfits.", + }, + "oil": { + title: "a shipment of body oil", + cost: 7500, + contains: ["body oil"], + owned: "You are well stocked with various body oils.", + }, + "lazyClothes": { + title: "a shipment of comfortable, rather stretchy, clothes", + cost: 7500, + contains: ["stretch pants and a crop-top"], + owned: "You are well stocked with various comfy pants and rather tight crop-tops.", + }, + "habit": { + title: "a shipment of chattel habits", + cost: 7500, + contains: ["a chattel habit"], + owned: "You are well stocked with habits from the chattel religion.", + }, + "maternityDress": { + title: "a shipment of maternity dresse", + cost: 7500, + contains: ["a maternity dress"], + owned: "You are well stocked with dresses specially tailored for pregnant women.", + }, + "maternityLingerie": { + title: "a shipment of maternity lingerie", + cost: 7500, + contains: ["attractive lingerie for a pregnant woman"], + owned: "You are well stocked with sexy silken lingerie designed for pregnant women.", + }, + }, + FSrevivalist: { + "egypt": { + title: "a shipment of Egyptian necklaces", + cost: 7500, + contains: ["no clothing"], + owned: "You are well stocked with ancient Egyptian necklaces.", + modelUpdate: {collar: "ancient Egyptian"} + }, + "toga": { + title: "a shipment of togas and stolas", + cost: 7500, + contains: ["a toga"], + owned: "You are well stocked with fine roman-styled togas and stolas.", + }, + "huipil": { + title: "a shipment of huipil", + cost: 7500, + contains: ["a huipil"], + owned: "You are well stocked with exquisite Aztec huipils.", + }, + "kimono": { + title: "a shipment of kimonos", + cost: 7500, + contains: ["a kimono"], + owned: "You are well stocked with elegant Japanese kimonos.", + }, + "harem": { + title: "a shipment of harem outfits", + cost: 7500, + contains: ["harem gauze"], + owned: "You are well stocked with Arabic harem garb made from the finest available silks.", + }, + "qipao": { + title: "a shipment of qipaos", + cost: 7500, + contains: ["a slutty qipao"], + owned: "You are well stocked with slutty Chinese qipaos.", + }, + }, + other: { + "military": { + title: "a shipment of military themed clothing", + cost: 5000, + contains: ["a military uniform", "a red army uniform", "battlearmor", "battledress"], + owned: "You are well stocked with a variety of military themed garb.", + }, + "cultural": { + title: "a shipment of cultural outfits", + cost: 15000, + contains: ["a biyelgee costume", "a dirndl", "a hanbok", "a mounty outfit", "lederhosen"], + owned: "You are well stocked with a variety of signature outfits from a variety of countries.", + }, + "middleEastern": { + title: "a shipment of burqas and similar garb", + cost: 5000, + contains: ["a burqa", "a niqab and abaya"], + owned: "You are well stocked with a number of burqas and similar clothing.", + }, + "casual": { + title: "an extra large shipment of casual clothing", + cost: 5000, + contains: ["a button-up shirt and panties", "a button-up shirt", "a sweater and cutoffs", "a sweater and panties", "a sweater", "a t-shirt and jeans", "a t-shirt and panties", "a t-shirt", "a tank-top and panties", "a tank-top", "a tube top", "an oversized t-shirt", "cutoffs", "jeans", "leather pants and a tube top", "leather pants"], + owned: "You are well stocked with casual clothing.", + }, + "career": { + title: "a shipment of professional garments", + cost: 2500, + contains: ["a nice nurse outfit", "a police uniform", "nice business attire"], + owned: "You are well stocked with a selection of professional outfits.", + }, + "dresses": { + title: "a shipment of professionally tailored dresses", + cost: 15000, + contains: ["a ball gown", "a gothic lolita dress"], + owned: "You are well stocked with a selection of fine dresses.", + }, + "bodysuits": { + title: "a shipment of exotic bodysuits", + cost: 7500, + contains: ["a cybersuit", "a latex catsuit"], + owned: "You are well stocked with a selection of bodysuits.", + }, + "underwear": { + title: "a shipment of undergarments", + cost: 5000, + contains: ["a bra", "a skimpy loincloth", "a thong", "boyshorts", "kitty lingerie", "panties and pasties", "pasties"], + owned: "You are well stocked with underwear.", + }, + "sports": { + title: "a shipment of exercise wear", + cost: 2500, + contains: ["a sports bra", "sport shorts and a sports bra", "sport shorts"], + owned: "You are well stocked with exercise wear.", + }, + "swimwear": { + title: "a shipment of swimwear", + cost: 3500, + contains: ["a monokini", "a one-piece swimsuit"], + owned: "You are well stocked with swimwear.", + }, + "pony": { + title: "a shipment of specialized latex ponygirl outfits", + cost: 10000, + contains: ["a nice pony outfit", "a slutty pony outfit"], + owned: "You are well stocked with ponygirl bodysuits.", + }, + "pol": { + title: "a shipment of politically incorrect clothing", + cost: 15000, + contains: ["a klan robe", "a schutzstaffel uniform", "a slutty klan robe", "a slutty schutzstaffel uniform"], + owned: "You are well stocked with a selection of outfits once considered distasteful.", + }, + "costume": { + title: "a shipment of colorful and revealing costumes", + cost: 15000, + contains: ["a Santa dress"], + owned: "You are well stocked with a variety of costume party supplies.", + }, + "pantsu": { + title: "a large crate of panties from Japan", + cost: 2500, + contains: ["a striped bra", "striped panties", "striped underwear"], + owned: "You have an impressive stash of panties and other striped underwear that may or may not be have at one point been used.", + }, + } +}; +/** + * @type {Object.<string, wardrobeItem>} String will be the property checked to see if the item is owned. So for "bunny", it will check V.boughtItem.clothing["bunny"]. + */ +App.Data.WardrobeShopping.Accessories = { + "shoes.heels": { + title: "a shipment of platform shoes", + cost: 7500, + contains: ["platform heels"], + owned: "You have shelves dedicated to your collection of platform shoes.", + }, + "clothing.belly": { + title: "a shipment of fake pregnancy bellies", + cost: 15000, + contains: ["a small empathy belly"], + owned: "You are well stocked with silicone pregnancy bellies modeled after variously sized women.", + }, + "toys.dildos": { + title: "a shipment of extra long dildos and bullet vibes", + cost: 10000, + contains: ["long dildo"], + owned: "You are well stocked with extra long dildos in a variety of sizes, as well as a good amount of bullet vibrators.", + }, + "toys.smartVibes": { + title: `the "smart" variant of the bullet vibrators`, + cost: 5000, + contains: ["long dildo"], + get rs() { return V.boughtItem.toys.dildos !== 0; }, + owned: `Some of the bullet vibes are of the "smart" variety.`, + }, + "toys.vaginalAttachments": { + title: "Order a shipment of vibrating dildo attachments", + cost: 10000, + contains: [], + owned: "You are well stocked with attachments that allow dildos to vibrate.", + }, + "toys.buttPlugs": { + title: "a shipment of extra long buttplugs", + cost: 10000, + contains: [], + owned: "You are well stocked with extra long buttplugs in a variety of sizes.", + }, + "toys.buttPlugTails": { + title: "a shipment of attachable tails", + cost: 5000, + contains: [], + owned: "You are well stocked with tails to attach to your buttplugs.", + }, + "toys.gags": { + title: "a shipment of massive dildo gags", + cost: 5000, + contains: [], + owned: "You are well stocked with massive dildo gags.", + }, + "toys.buckets": { + title: "everything you need to force-feed slaves", + note: `Some supplies from the cafeteria and a slight adjustment to the feeder settings is all it would take.`, + cost: 0, + contains: [], + owned: "You have everything you need in one place to force-feed slaves. You've also adjusted the feeders to cheaply produce filler food to save on money. However, said food is just empty calories and probably bad for a slave's waistline.", + }, + "toys.enema": { + title: "enema supplies", + cost: 5000, + contains: [], + owned: "You are well stocked with specially formulated liquids to be used safely for long term enemas along with the tools needed to keep a slave bloated for extended periods of time", + }, + "toys.medicalEnema": { + title: `medical enema supplies`, + cost: 5000, + contains: [], + get rs() { return (V.boughtItem.toys.enema !== 0); }, + owned: "You are also well stocked with drugs to be mixed with the enema water for use in medical enemas.", + }, +}; diff --git a/src/uncategorized/wardrobe.tw b/src/uncategorized/wardrobe.tw deleted file mode 100644 index e39959f20831a9514f53e500877ff674d616f0ee..0000000000000000000000000000000000000000 --- a/src/uncategorized/wardrobe.tw +++ /dev/null @@ -1,652 +0,0 @@ -:: Wardrobe [nobr jump-to-safe jump-from-safe] - -<<set $nextButton = "Back", $nextLink = "Manage Penthouse">> - -<<if $seeDicks != 100>> - <<set _model = GenerateNewSlave("XX")>> -<<else>> - <<set _model = GenerateNewSlave("XY")>> -<</if>> - -<h1>Slave Wardrobe</h1> - -<p class="scene-intro"> -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 they be allowed to dress themselves. The selection includes -<<set _ownItAll = ( - App.Data.misc.niceClothes.every((i) => isItemAccessible.entry(i.value, "clothing")) && - App.Data.misc.harshClothes.every((i) => isItemAccessible.entry(i.value, "clothing")) -)>> -<<if _ownItAll>> - 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. -<</if>> -<<if $boughtItem.shoes.heels == 1>> - A large variety of shoes are available to select from. -<</if>> -<<if $boughtItem.clothing.dildos == 1 && $boughtItem.toys.gags == 1 && $boughtItem.clothing.buttPlugs == 1>> - Sex toys of all kinds and shapes line the shelves. -<<elseif $boughtItem.clothing.dildos == 1 || $boughtItem.toys.gags == 1 || $boughtItem.clothing.buttPlugs == 1 || $boughtItem.clothing.buttPlugTails == 1 || $boughtItem.clothing.vaginalAttachments == 1>> - Some sex toys line the shelves. -<</if>> -<<if $boughtItem.toys.buckets == 1>> - Several buckets of various sizes and a sturdy cup have been set aside for you in feeding slaves to their limit. -<</if>> -<<if $boughtItem.toys.enema == 1>> - A number of drums of specially formulated water for use in enemas line one of the walls. -<</if>> -<<if $boughtItem.toys.medicalEnema == 1>> - Alongside them, multiple drums of mixtures for use in medical enemas. -<</if>> -</p> - -<h2>Future Society styles</h2> - -<table class="wardrobe"> -<tr> -<td> -<<set _model.clothes = "a bunny outfit">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a bunny outfit", "clothing") !== true>> - [[Order a shipment of bunny suits|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.bunny = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with classic bunny suits and bowties. -<</if>> -</td> - -<td> -<<set _model.clothes = "conservative clothing">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("conservative clothing", "clothing") !== true>> - [[Order a shipment of conservative clothes|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.conservative = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with modest outfits. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = "a bimbo outfit">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a bimbo outfit", "clothing") !== true>> - [[Order a shipment of outfits suitable for bimbos|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.bimbo = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with bimbo attire. -<</if>> -</td> - -<td> -<<set _model.clothes = "a courtesan dress">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a courtesan dress", "clothing") !== true>> - [[Order a shipment of courtesan dresses|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.courtesan = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with courtesan dresses. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = "chains">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("chains", "clothing") !== true>> - [[Order a shipment of chains|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.chains = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with various lengths of binding chains. -<</if>> -</td> - -<td> -<<set _model.clothes = "Western clothing">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("Western clothing", "clothing") !== true>> - [[Order a shipment of western outfits|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.western = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with cowgirl outfits. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = "body oil">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("body oil", "clothing") !== true>> - [[Order a shipment of body oil|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.oil = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with various body oils. -<</if>> -</td> - -<td> -<<set _model.clothes = "stretch pants and a crop-top">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("stretch pants and a crop-top", "clothing") !== true>> - [[Order a shipment of comfortable, rather stretchy, clothes|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.lazyClothes = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with various comfy pants and rather tight crop-tops. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = "a chattel habit">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a chattel habit", "clothing") !== true>> - [[Order a shipment of chattel habits|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.habit = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with habits from the chattel religion. -<</if>> -</td> -<td> -<<set _model.clothes = "a maternity dress">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a maternity dress", "clothing") !== true>> - [[Order a shipment of maternity dresses|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.maternityDress = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with dresses specially tailored for pregnant women. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = "attractive lingerie for a pregnant woman">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("attractive lingerie for a pregnant woman", "clothing") !== true>> - [[Order a shipment of maternity lingerie|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.maternityLingerie = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with sexy silken lingerie designed for pregnant women. -<</if>> -</td> -</tr> -</table> - -<h2>Future Society Revivalist styles</h2> - -<table class="wardrobe"> -<tr> -<td> -<<set _model.clothes = "no clothing">> -<<set _model.collar = "ancient Egyptian">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<set _model.collar = "none">> -<<if !isItemAccessible.entry("ancient Egyptian", "collar")>> - [[Order a shipment of Egyptian necklaces|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.egypt = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with ancient Egyptian necklaces. -<</if>> -</td> - -<td> -<<set _model.clothes = "a toga">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a toga", "clothing") !== true>> - [[Order a shipment of togas|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.toga = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with fine roman-styled togas. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = "a huipil">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a huipil", "clothing") !== true>> - [[Order a shipment of huipil|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.huipil = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with exquisite Aztec huipils. -<</if>> -</td> - -<td> -<<set _model.clothes = "a kimono">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a kimono", "clothing") !== true>> - [[Order a shipment of kimonos|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.kimono = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with elegant Japanese kimonos. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = "harem gauze">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("harem gauze", "clothing") !== true>> - [[Order a shipment of harem outfits|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.harem = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with Arabic harem garb made from the finest available silks. -<</if>> -</td> - -<td> -<<set _model.clothes = "a slutty qipao">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a slutty qipao", "clothing") !== true>> - [[Order a shipment of qipaos|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.qipao = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with slutty Chinese qipaos. -<</if>> -</td> -</tr> -</table> - -<h2>Other styles</h2> - -<table class="wardrobe"> -<tr> -<td> -<<set _model.clothes = either("a military uniform", "a red army uniform", "battlearmor", "battledress")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("battlearmor", "clothing") !== true>> - [[Order a shipment of military themed clothing|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.military = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with a variety of military themed garb. -<</if>> -</td> - -<td> -<<set _model.clothes = either("a biyelgee costume", "a dirndl", "a hanbok", "a mounty outfit", "lederhosen")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a dirndl", "clothing") !== true>> - [[Order a shipment of cultural outfits|Wardrobe][cashX(forceNeg(Math.trunc(15000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.cultural = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(15000 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with a variety of signature outfits from a variety of countries. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = either("a burqa", "a niqab and abaya")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a burqa", "clothing") !== true>> - [[Order a shipment of burqas and similar garb|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.middleEastern = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with a number of burqas and similar clothing. -<</if>> -</td> - -<td> -<<set _model.clothes = either("a button-up shirt and panties", "a button-up shirt", "a sweater and cutoffs", "a sweater and panties", "a sweater", "a t-shirt and jeans", "a t-shirt and panties", "a t-shirt", "a tank-top and panties", "a tank-top", "a tube top", "an oversized t-shirt", "cutoffs", "jeans", "leather pants and a tube top", "leather pants")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("jeans", "clothing") !== true>> - [[Order an extra large shipment of casual clothing|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.casual = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with casual clothing. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = either("a nice nurse outfit", "a police uniform", "nice business attire")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a police uniform", "clothing") !== true>> - [[Order a shipment of professional garments|Wardrobe][cashX(forceNeg(Math.trunc(2500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.career = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(2500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with a selection of professional outfits. -<</if>> -</td> - -<td> -<<set _model.clothes = either("a ball gown", "a gothic lolita dress")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a gothic lolita dress", "clothing") !== true>> - [[Order a shipment of professionally tailored dresses|Wardrobe][cashX(forceNeg(Math.trunc(15000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.dresses = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(15000 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with a selection of fine dresses. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = either("a cybersuit", "a latex catsuit")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a cybersuit", "clothing") !== true>> - [[Order a shipment of exotic bodysuits|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.bodysuits = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with a selection of bodysuits. -<</if>> -</td> - -<td> -<<set _model.clothes = either("a bra", "a skimpy loincloth", "a thong", "boyshorts", "kitty lingerie", "panties and pasties", "pasties")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("boyshorts", "clothing") !== true>> - [[Order a shipment of undergarments|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.underwear = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with underwear. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = either("a sports bra", "sport shorts and a sports bra", "sport shorts")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("sport shorts and a sports bra", "clothing") !== true>> - [[Order a shipment of exercise wear|Wardrobe][cashX(forceNeg(Math.trunc(2500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.sports = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(2500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with exercise wear. -<</if>> -</td> - -<td> -<<set _model.clothes = either("a monokini", "a one-piece swimsuit")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a one-piece swimsuit", "clothing") !== true>> - [[Order a shipment of swimwear|Wardrobe][cashX(forceNeg(Math.trunc(3500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.swimwear = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(3500 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with swimwear. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = either("a nice pony outfit", "a slutty pony outfit")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a nice pony outfit", "clothing") !== true>> - [[Order a shipment of specialized latex ponygirl outfits|Wardrobe][cashX(forceNeg(Math.trunc(10000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.pony = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(10000 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with ponygirl bodysuits. -<</if>> -</td> - -<td> -<<set _model.clothes = either("a klan robe", "a schutzstaffel uniform", "a slutty klan robe", "a slutty schutzstaffel uniform")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a schutzstaffel uniform", "clothing") !== true>> - [[Order a shipment of politically incorrect clothing|Wardrobe][cashX(forceNeg(Math.trunc(15000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.pol = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(15000 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with a selection of outfits once considered distasteful. -<</if>> -</td> -</tr> - -<tr> -<td> -<<set _model.clothes = "a Santa dress">> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("a Santa dress", "clothing") !== true>> - [[Order a shipment of colorful and revealing costumes|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.costume = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(15000 * $upgradeMultiplierTrade))>></div> -<<else>> - You are well stocked with a variety of costume party supplies. -<</if>> -</td> - -<td> -<<set _model.clothes = either("a striped bra", "striped panties", "striped underwear")>> -<<if $seeImages == 1>> - <div class="imageRef smlImg"> - <<= SlaveArt(_model, 1, 0)>> - </div> -<</if>> -<<if isItemAccessible.entry("striped panties", "clothing") !== true>> - [[Order a large crate of panties from Japan|Wardrobe][cashX(forceNeg(Math.trunc(2500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.pantsu = 1]] - <div class="detail">Costs <<print cashFormat(Math.trunc(2500 * $upgradeMultiplierTrade))>></div> -<<else>> - You have an impressive stash of panties and other striped underwear that may or may not be have at one point been used. -<</if>> -</td> -</tr> -</table> - -<h2>Accessories</h2> - -<p> - <<if !isItemAccessible.entry("platform heels", "shoes")>> - [[Order a shipment of platform shoes|Wardrobe][cashX(forceNeg(Math.trunc(7500 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.shoes.heels = 1]] - <span class="detail">Costs <<print cashFormat(Math.trunc(7500 * $upgradeMultiplierTrade))>></span> - <<else>> - You have shelves dedicated to your collection of platform shoes. - <</if>> -</p> - -<p> - <<if !isItemAccessible.entry("a small empathy belly", "bellyAccessory")>> - [[Order a shipment of fake pregnancy bellies|Wardrobe][cashX(forceNeg(Math.trunc(15000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.clothing.belly = 1]] - <span class="detail">Costs <<print cashFormat(Math.trunc(15000 * $upgradeMultiplierTrade))>></span> - <<else>> - You are well stocked with silicone pregnancy bellies modeled after variously sized women. - <</if>> -</p> - -<p> - <div> - <<if $boughtItem.toys.dildos == 0>> - [[Order a shipment of extra long dildos and bullet vibes|Wardrobe][cashX(forceNeg(Math.trunc(10000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.dildos = 1]] - <span class="detail">Costs <<print cashFormat(Math.trunc(10000 * $upgradeMultiplierTrade))>></span> - <<else>> - You are well stocked with extra long dildos in a variety of sizes, as well as a good amount of bullet vibrators. - <<if $boughtItem.toys.smartVibes == 0>> - <div class="indent"> - [[Order the "smart" variant of the bullet vibrators|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.smartVibes = 1]] - <span class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></span> - </div> - <<else>> - Some of the bullet vibes are of the "smart" variety. - <</if>> - <</if>> - </div> - - <div> - <<if $boughtItem.toys.vaginalAttachments == 0>> - [[Order a shipment of vibrating dildo attachments|Wardrobe][cashX(forceNeg(Math.trunc(10000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.vaginalAttachments = 1]] - <span class="detail">Costs <<print cashFormat(Math.trunc(10000 * $upgradeMultiplierTrade))>></span> - <<else>> - You are well stocked with attachments that allow dildos to vibrate. - <</if>> - </div> - - <div> - <<if $boughtItem.toys.buttPlugs == 0>> - [[Order a shipment of extra long buttplugs|Wardrobe][cashX(forceNeg(Math.trunc(10000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.buttPlugs = 1]] - <span class="detail">Costs <<print cashFormat(Math.trunc(10000 * $upgradeMultiplierTrade))>></span> - <<else>> - You are well stocked with extra long buttplugs in a variety of sizes. - <</if>> - </div> - - <div> - <<if $boughtItem.toys.buttPlugTails == 0>> - [[Order a shipment of attachable tails|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.buttPlugTails = 1]] - <span class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></span> - <<else>> - You are well stocked with tails to attach to your buttplugs. - <</if>> - </div> - - <div> - <<if $boughtItem.toys.gags == 0>> - [[Order a shipment of massive dildo gags|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.gags = 1]] - <span class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></span> - <<else>> - You are well stocked with massive dildo gags. - <</if>> - </div> -</p> - -<p> - <div> - <<if $boughtItem.toys.buckets == 0>> - [[Gather up everything you need to force-feed slaves|Wardrobe][$boughtItem.toys.buckets = 1]] - <span class="detail">Some supplies from the cafeteria and a slight adjustment to the feeder settings is all it would take.</span> - <<else>> - You have everything you need in one place to force-feed slaves. You've also adjusted the feeders to cheaply produce filler food to save on money. However, said food is just empty calories and probably bad for a slave's waistline. - <</if>> - </div> - - <div> - <<if $boughtItem.toys.enema == 0>> - [[Order enema supplies|Wardrobe][cashX(forceNeg(Math.trunc(5000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.enema = 1]] - <span class="detail">Costs <<print cashFormat(Math.trunc(5000 * $upgradeMultiplierTrade))>></span> - <<else>> - You are well stocked with specially formulated liquids to be used safely for long term enemas along with the tools needed to keep a slave bloated for extended periods of time. - <<if $boughtItem.toys.medicalEnema == 0>> - [[Order medical enema supplies|Wardrobe][cashX(forceNeg(Math.trunc(25000 * $upgradeMultiplierTrade)), "capEx"), $boughtItem.toys.medicalEnema = 1]] - <span class="detail">Costs <<print cashFormat(Math.trunc(25000 * $upgradeMultiplierTrade))>></span> - <<else>> - You are also well stocked with drugs to be mixed with the enema water for use in medical enemas. - <</if>> - <</if>> - </div> -</p>