From a61c5630b83d117d712c0f9d715260228c60c43d Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Mon, 8 Apr 2024 00:30:08 -0400 Subject: [PATCH] Pregmod v4.0.0-alpha.31 --- CHANGELOG.md | 3 +++ src/002-config/fc-version.js | 4 ++-- src/facilities/toyShop/toyShop.js | 5 +++++ src/player/managePersonalAffairs.js | 22 ++++++++++++++++++++++ 4 files changed, 32 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cc871f665e..fb316ca524f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## Unreleased +## 0.10.7.1-4.0.0-alpha.31 - 2024-04-08 + * added a pregnancy/breeding report * added new universal impregnation rules: citizens and slaves * expanded universal impregnation rule: player to allow for more exotic methods of impregnation +* added penetrative and clitoral penetrative porn fames * AI related things, most notably the dressing room * fixes diff --git a/src/002-config/fc-version.js b/src/002-config/fc-version.js index 68977b7dd04..73fb882701e 100644 --- a/src/002-config/fc-version.js +++ b/src/002-config/fc-version.js @@ -1,6 +1,6 @@ App.Version = { base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed. - pmod: "4.0.0-alpha.30", + pmod: "4.0.0-alpha.31", commitHash: null, - release: 1231, // When getting close to 2000, please remove the check located within the onLoad() function defined at line five of src/js/eventHandlers.js. + release: 1232, // When getting close to 2000, please remove the check located within the onLoad() function defined at line five of src/js/eventHandlers.js. }; diff --git a/src/facilities/toyShop/toyShop.js b/src/facilities/toyShop/toyShop.js index 300d5b90b6c..e3aa550341c 100644 --- a/src/facilities/toyShop/toyShop.js +++ b/src/facilities/toyShop/toyShop.js @@ -59,6 +59,11 @@ App.UI.toyShop = function() { if (V.customItem.vaginalAccessory.size > 0) { selectDiv.append(selectDesign(vaginalAcc, "vaginalAccessory")); } + /* + if (V.toys.smartStrapon === 0 && V.PC.dick === 0) { + frag.append(personalStrapon()); + } + */ frag.append(create()); return frag; diff --git a/src/player/managePersonalAffairs.js b/src/player/managePersonalAffairs.js index 0e6808ffeb2..5f16a7354de 100644 --- a/src/player/managePersonalAffairs.js +++ b/src/player/managePersonalAffairs.js @@ -1948,9 +1948,16 @@ App.UI.managePersonalAffairs = function() { const cumTapDiv = document.createElement("div"); const impregnateSelfDiv = document.createElement("div"); const dildoSelfDiv = document.createElement("div"); + const betterToyDiv = document.createElement("div"); App.UI.DOM.appendNewElement("h2", pervertDiv, `Perversions`); + /* + if (V.toys.smartStrapon === 0 && V.PC.dick === 0 && V.PC.lusty > 0 && V.assistant.personality > 0 && V.cash >= 8000) { + pervertDiv.append(checkOutThisStrapon()); + } + */ + pervertDiv.append(dildoSelf()); // set these to use standard preg/inflation bars @@ -1961,6 +1968,21 @@ App.UI.managePersonalAffairs = function() { ); } + function checkOutThisStrapon() { + const text = []; + + text.push( + `"${properTitle()}," ${V.assistant.announcedName} chimes in, "I may have a solution to your sexual frustrations. I've located a toy shop that custom produces strap-ons, among other things, that I can connect with and control. Using its multiple settings, I'll be able to maximize both you and your partners' pleasure, far better than any simple egg vibrator could." The price is a bit ludicris at <span class="cash dec">${(cashFormat(8000))},</span> but at least the delivery will be fast.`, + App.UI.DOM.link(`Order the customized smart strap-on`, () => { + V.toys.smartStrapon = 1; + V.cash -= 8000; + App.UI.DOM.replace(betterToyDiv, checkOutThisStrapon); + }) + ); + + return betterToyDiv; + } + /** * @returns {HTMLDivElement} a div that allows the player to take their own virginity using a dildo */ -- GitLab