diff --git a/src/events/intro/pcBodyIntro.js b/src/events/intro/pcBodyIntro.js new file mode 100644 index 0000000000000000000000000000000000000000..7592fbf37b284fa0bae0682ecd35fac772a77697 --- /dev/null +++ b/src/events/intro/pcBodyIntro.js @@ -0,0 +1,186 @@ +App.Intro.PCBodyIntro = function() { + V.PC.actualAge = Math.clamp(V.PC.actualAge, 14, 80); + + const el = new DocumentFragment(); + let r = []; + + r.push(`Most slaveowners in the Free Cities are male. The preexisting power structures of the old world have mostly migrated to the new, and it can often be very hard to be a free woman in the Free Cities. Some manage to make their way, but in many arcologies, men are the owners, and women are the owned. You'll cut a striking figure as the owner and leader of your arcology, but`); + r.push(App.UI.DOM.makeElement("span", `what's under your business attire?`, "intro question")); + App.Events.addNode(el, r, "p"); + + el.append(PCbody()); + + return el; + + function PCbody() { + const el = document.createElement("p"); + const options = new App.UI.OptionsGroup(); + let r = []; + + // Gender + r.push(`You are a`); + if (V.PC.genes === "XX") { + r.push(`woman`); + } else { + r.push(`man`); + } + r.push(`with a`); + if (V.PC.title > 0) { + r.push(`masculine figure and will be referred to as <strong>Master.</strong>`); + options.addOption(r.join(" ")).customButton("Switch to a feminine appearance", () => { V.PC.title = 0; }, "PC Body Intro"); + } else { + r.push(`feminine figure and will be referred to as <strong>Mistress.</strong>`); + options.addOption(r.join(" ")).customButton("Switch to a masculine appearance", () => { V.PC.title = 1; }, "PC Body Intro"); + } + options.addComment("This option will affect scenes. Femininity may increase difficulty in the future, but for now only your chest and junk matter."); + + // Chest + if (V.PC.boobs > 300) { + options.addOption(`Under my suit jacket, <strong>feminine breasts.</strong>`, "boobs", V.PC) + .addValue("Remove breasts", 100); + } else { + if (V.PC.title > 0) { + options.addOption(`Under my suit jacket, <strong>masculine muscles.</strong>`, "boobs", V.PC) + .addValue("Add breasts", 900); + } else { + options.addOption(`Under my suit jacket, <strong>a flat chest.</strong>`, "boobs", V.PC) + .addValue("Add breasts", 900); + } + } + options.addComment("These options will affect scenes. Sporting breasts will increase difficulty"); + + return el; + } +}; + +/* + + </div> + + <div> + r.push(`Behind the front of my tailored`); + if (V.PC.dick !== 0) { + if (V.PC.vagina !== -1) { + r.push(`slacks,`); + <span style="font-weight:Bold"> + r.push(`both a penis and a vagina.`); + </span> + [[Remove the penis|PC Body Intro][V.PC.dick = 0, V.PC.balls = 0, V.PC.scrotum = 0, V.PC.prostate = 0]] | [[Remove the vagina|PC Body Intro][V.PC.vagina = -1, V.PC.ovaries = 0]] + } else { + r.push(`slacks, a`); + <span style="font-weight:Bold"> + r.push(`penis.`); + </span> + [[Switch to vagina|PC Body Intro][V.PC.dick = 0, V.PC.balls = 0, V.PC.scrotum = 0, V.PC.prostate = 0, V.PC.genes = "XX", V.PC.vagina = 1, V.PC.ovaries = 1]] | [[Add a vagina|PC Body Intro][V.PC.vagina = 1, V.PC.ovaries = 1]] + } + } else { + r.push(`skirt, a`); + <span style="font-weight:Bold"> + r.push(`vagina.`); + </span> + [[Switch to penis|PC Body Intro][V.PC.dick = 4, V.PC.balls = 3, V.PC.scrotum = 3, V.PC.prostate = 1, V.PC.genes = "XY", V.PC.vagina = -1, V.PC.ovaries = 0]] | [[Add a penis|PC Body Intro][V.PC.dick = 4, V.PC.balls = 3, V.PC.scrotum = 3, V.PC.prostate = 1]] + } + </div> + <div class="indent note"> + r.push(`These options will affect sex scenes. Feminine options will increase difficulty.`); + </div> +</p> + +<p> + <div class="intro question"> + r.push(`How old are you?`); + </div> + <div> + r.push(`I'm`); + if (V.PC.actualAge >= 65) { + r.push(`getting up in years. I've made a legacy for myself, and I'm not done yet.`); + } else if (V.PC.actualAge >= 50) { + r.push(`well into middle age. I've made a name for myself, and I've still got it.`); + } else if (V.PC.actualAge >= 35) { + r.push(`entering middle age. I'm accomplished, and I retain some youthful vigor.`); + } else { + r.push(`surprisingly young. I'll need to prove myself, but I've got energy to burn.`); + } + r.push(`My age:`); + <span style="font-weight:Bold"> + <<textbox "V.PC.actualAge" V.PC.actualAge "PC Body Intro">> + </span> + V.PC.physicalAge = V.PC.actualAge, V.PC.visualAge = V.PC.actualAge; + </div> + <div class="indent note"> + r.push(`Older player characters start with more reputation and maintain reputation somewhat more easily, but have slightly less sexual energy.`); + </div> +</p> + +<p> + <div class="intro question"> + r.push(`What is your name and alternate indulgence?`); + </div> + + <div> + r.push(`Name your character: `); +<<textbox "V.PC.slaveName" V.PC.slaveName "PC Body Intro">> + r.push(` (surname)`); + if (V.PC.slaveSurname) { + <<textbox "V.PC.slaveSurname" V.PC.slaveSurname "PC Body Intro">> + <<link "Go by a single name">> +V.PC.slaveSurname = 0, V.PC.birthSurname = ""; +<<goto "PC Body Intro">> +<</link>> + } else { + <<textbox "V.PC.slaveSurname" "" "PC Body Intro">> + } + </div> + <div class="indent note"> + r.push(`As with all text boxes in FC, press the enter key to commit your changes.`); + </div> + <div> + r.push(`Preferred refreshment: `); +<<textbox "V.PC.refreshment" V.PC.refreshment "PC Body Intro">> + r.push(` [[Cigars|PC Body Intro][${V.PC.refreshment} = "cigar",V.PC.refreshmentType = 0]] | [[Whiskey|PC Body Intro][V.PC.refreshment = "whiskey",V.PC.refreshmentType = 1]]`); + </div> + <div> + r.push(`Preferred method of consumption:`); + <span style="font-weight:Bold"> +if (V.PC.refreshmentType === 0) { + r.push(`Smoked`); +} else if (V.PC.refreshmentType === 1) { + r.push(`Drank`); +} else if (V.PC.refreshmentType === 2) { + r.push(`Eaten`); +} else if (V.PC.refreshmentType === 3) { + r.push(`Snorted`); +} else if (V.PC.refreshmentType === 4) { + r.push(`Injected`); +} else if (V.PC.refreshmentType === 5) { + r.push(`Popped`); +} else if (V.PC.refreshmentType === 6) { + r.push(`Dissolved orally`); +}</span>. + </div> + [[Smoked|PC Body Intro][V.PC.refreshmentType = 0]] | [[Drank|PC Body Intro][V.PC.refreshmentType = 1]] | [[Eaten|PC Body Intro][V.PC.refreshmentType = 2]] | [[Snorted|PC Body Intro][V.PC.refreshmentType = 3]] | [[Injected|PC Body Intro][V.PC.refreshmentType = 4]] | [[Popped|PC Body Intro][V.PC.refreshmentType = 5]] | [[Orally Dissolved|PC Body Intro][V.PC.refreshmentType = 6]] + <div class="indent note"> + r.push(`Flavor only; no mechanical effect. If entering a custom refreshment, please assign proper usage.`); + if (V.PC.refreshmentType === 0) {"Smoke" must fit into the following sentence: "I smoked a V.PC.refreshment" to fit events properly + } else if (V.PC.refreshmentType === 5) {"Popped" must fit into the following sentence: "I shook the bottle of V.PC.refreshment" to fit events properly + } else if (V.PC.refreshmentType === 6) {"Orally Dissolved" must fit into the following sentence: "I placed a tab of V.PC.refreshment under my tongue" to fit events properly + } + </div> +</p> + +<p> + if (V.PC.vagina !== -1) { + [[Confirm player character customization|PC Preg Intro]] + } else { + [[Confirm player character customization|PC Appearance Intro]] + } +</p> + + + return el; +} + + + + +*/ diff --git a/src/events/intro/pcBodyIntro.tw b/src/events/intro/pcBodyIntro.tw index 79df64667f1aaae2426df5550764bf93893bdada..8d422f54a14610fd797c11826e6699a10110b0a8 100644 --- a/src/events/intro/pcBodyIntro.tw +++ b/src/events/intro/pcBodyIntro.tw @@ -1,5 +1,11 @@ :: PC Body Intro [nobr] +<h1>DOM</h1> + +<<includeDOM App.Intro.PCBodyIntro()>> + +<h1>SC</h1> + <p> Most slaveowners in the Free Cities are male. The preexisting power structures of the old world have mostly migrated to the new, and it can often be very hard to be a free woman in the Free Cities. Some manage to make their way, but in many arcologies, men are the owners, and women are the owned. You'll cut a striking figure as the owner and leader of your arcology, but <span class="intro question">