From 0d7c0b79dce069a69aabdcc9682eee1b27f8da85 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sat, 10 Feb 2024 16:24:42 -0500 Subject: [PATCH] fixes, tweaks, and finalizations --- CHANGELOG.md | 4 ++++ src/002-config/fc-version.js | 2 +- src/endWeek/player/prLongTermPhysicalEffects.js | 2 ++ src/endWeek/saLongTermPhysicalEffects.js | 2 ++ src/endWeek/saPleaseYou.js | 2 +- 5 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98ac57c9dfe..15d75b59be7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## Unreleased +* player .energy and .need +* tool cleaning and improvements (compilers, sanityCheck, etc) +* fixes + ## 0.10.7.1-4.0.0-alpha.29 - 2024-02-03 * various AI related things diff --git a/src/002-config/fc-version.js b/src/002-config/fc-version.js index 332e228a77f..59da3315332 100644 --- a/src/002-config/fc-version.js +++ b/src/002-config/fc-version.js @@ -2,5 +2,5 @@ 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.29", commitHash: null, - release: 1220, // When getting close to 2000, please remove the check located within the onLoad() function defined at line five of src/js/eventHandlers.js. + release: 1221, // 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/endWeek/player/prLongTermPhysicalEffects.js b/src/endWeek/player/prLongTermPhysicalEffects.js index 6ebb73f5d86..7fb013ac58c 100644 --- a/src/endWeek/player/prLongTermPhysicalEffects.js +++ b/src/endWeek/player/prLongTermPhysicalEffects.js @@ -986,6 +986,8 @@ App.EndWeek.Player.longTermPhysicalEffects = function(PC = V.PC) { } } else { triggerSize = PC.natural.boobs * 20; + // A well-developed cow should have udders + triggerSize += PC.lactationAdaptation * (PC.lactation > 0 ? 20 : 10); if (PC.physicalAge <= 12) { triggerSize *= (gigantomastiaMod === 2 ? .75 : .5); } diff --git a/src/endWeek/saLongTermPhysicalEffects.js b/src/endWeek/saLongTermPhysicalEffects.js index c5376849db6..2bc1e8cf65a 100644 --- a/src/endWeek/saLongTermPhysicalEffects.js +++ b/src/endWeek/saLongTermPhysicalEffects.js @@ -1179,6 +1179,8 @@ App.SlaveAssignment.longTermPhysicalEffects = function saLongTermPhysicalEffects } } else { triggerSize = slave.natural.boobs * 20; + // A well-developed cow should have udders + triggerSize += slave.lactationAdaptation * (slave.lactation > 0 ? 20 : 10); if (slave.physicalAge <= 6) { triggerSize *= (gigantomastiaMod === 2 ? .5 : .25); } else if (slave.physicalAge <= 12) { diff --git a/src/endWeek/saPleaseYou.js b/src/endWeek/saPleaseYou.js index afdd5868833..8b8968cf4ae 100644 --- a/src/endWeek/saPleaseYou.js +++ b/src/endWeek/saPleaseYou.js @@ -2911,7 +2911,7 @@ App.SlaveAssignment.pleaseYou = function saPleaseYou(slave) { slave.devotion += 2; qualitySex += 30; } else if (slave.devotion <= 50) { - r.push(`week obediently letting you suck ${him} dry while you`); + r.push(`obediently letting you suck ${him} dry while you`); if (V.PC.belly >= 15000 && !nullPC) { r.push(`use an egg vibrator on yourself.`); } else { -- GitLab