diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cc871f665e0c47ad6404c2ee2d896b9b9fa51c0..fb316ca524ffc5d2c98570ee0fa1e9e330da07c7 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 68977b7dd04bc7ae3a21bd39e2ebe5b7d053c213..73fb882701e19f8d4d1c835e650daa8dd84b3222 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 300d5b90b6cf74ef7047326a836ffa9ff0b19b36..e3aa550341c10b41a5301d77ea453adf1cb3aa53 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 0e6808ffeb2546d9c8ff1f228b189e7c20d837dd..5f16a7354dee58deb92988847f83e5ee430688c6 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 */