diff --git a/src/data/backwardsCompatibility/datatypeCleanup.js b/src/data/backwardsCompatibility/datatypeCleanup.js
index 1a4f4d4930733894384ef8dccd072d8042295533..74fa27b207611482695bff377dcda09452cbdf45 100644
--- a/src/data/backwardsCompatibility/datatypeCleanup.js
+++ b/src/data/backwardsCompatibility/datatypeCleanup.js
@@ -1375,7 +1375,7 @@ globalThis.PCDatatypeCleanup = (function PCDatatypeCleanup() {
 	 * @param {App.Entity.PlayerState} PC
 	 */
 	function PCBoobsDatatypeCleanup(PC) {
-		PC.boobs = Math.max(+PC.boobs, 100) || 200;
+		PC.boobs = Math.max(+PC.boobs, 200) || 200;
 		if (typeof PC.boobShape !== "string") {
 			PC.boobShape = "normal";
 		}
diff --git a/src/events/intro/pcBodyIntro.js b/src/events/intro/pcBodyIntro.js
index 80c40ad5db3639ce4b223c51c574eed843cd0cfe..1dd639982445185ea0ed73fe42d1ceb5bc6e9023 100644
--- a/src/events/intro/pcBodyIntro.js
+++ b/src/events/intro/pcBodyIntro.js
@@ -41,7 +41,7 @@ App.Intro.PCBodyIntro = function() {
 
 		// Chest
 		options.addOption("Under my suit jacket", "boobs", V.PC)
-			.addValue((V.PC.title > 0) ? `Masculine muscles` : `A flat chest`, 100)
+			.addValue((V.PC.title > 0) ? `Masculine muscles` : `A flat chest`, 200)
 			.addValue("Feminine breasts", 900)
 			.addComment("These options will affect scenes. Sporting breasts will increase difficulty");