diff --git a/src/cheats/cheatEditSlave.js b/src/cheats/cheatEditSlave.js
index 54fea7440484ec731eea6e113e475e89f3b27b9b..9d4672f475f72c7eb35d3894727fb9c5578c1a66 100644
--- a/src/cheats/cheatEditSlave.js
+++ b/src/cheats/cheatEditSlave.js
@@ -27,6 +27,8 @@ App.UI.SlaveInteract.cheatEditSlave = function(slave) {
 	const tabCaptions = {
 		"profile": 'Profile',
 		"physical": 'Physical',
+		"upper": 'Upper',
+		"lower": 'Lower',
 		"womb": 'Womb',
 		"mental": 'Mental',
 		"skills": 'Skills',
@@ -41,6 +43,8 @@ App.UI.SlaveInteract.cheatEditSlave = function(slave) {
 	tabBar.append(
 		App.UI.tabBar.tabButton('profile', tabCaptions.profile),
 		App.UI.tabBar.tabButton('physical', tabCaptions.physical),
+		App.UI.tabBar.tabButton('upper', tabCaptions.upper),
+		App.UI.tabBar.tabButton('lower', tabCaptions.lower),
 		App.UI.tabBar.tabButton('womb', tabCaptions.womb),
 		App.UI.tabBar.tabButton('mental', tabCaptions.mental),
 		App.UI.tabBar.tabButton('skills', tabCaptions.skills),
@@ -55,6 +59,8 @@ App.UI.SlaveInteract.cheatEditSlave = function(slave) {
 
 	el.append(App.UI.tabBar.makeTab('profile', makeSpanIded("content-profile", App.StartingGirls.profile(V.tempSlave, true))));
 	el.append(App.UI.tabBar.makeTab('physical', makeSpanIded("content-physical", App.StartingGirls.physical(V.tempSlave, true))));
+	el.append(App.UI.tabBar.makeTab('upper', makeSpanIded("content-upper", App.StartingGirls.upper(V.tempSlave))));
+	el.append(App.UI.tabBar.makeTab('lower', makeSpanIded("content-lower", App.StartingGirls.lower(V.tempSlave))));
 	if (V.tempSlave.womb.length > 0) {
 		el.append(App.UI.tabBar.makeTab('womb', makeSpanIded("content-womb", analyzePregnancies(V.tempSlave, true))));
 	}
diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js
index fb830cda76cf298ffecc49e9a9e38124d81e52f4..2b98ad6a8f7fb9099827ae43ce97330edcea202b 100644
--- a/src/npc/startingGirls/startingGirls.js
+++ b/src/npc/startingGirls/startingGirls.js
@@ -794,6 +794,42 @@ App.StartingGirls.physical = function(slave, cheat = false) {
 		option.showTextBox();
 	}
 
+	if (V.seeExtreme === 1) {
+		State.temporary.LA = hasLeftArm(slave);
+		options.addOption("Left arm", "LA", State.temporary)
+			.addValue("Healthy", true, () => slave.arm.left = new App.Entity.LimbState())
+			.addValue("Amputated", false, () => slave.arm.left = null);
+
+		State.temporary.RA = hasRightArm(slave);
+		options.addOption("Right arm", "RA", State.temporary)
+			.addValue("Healthy", true, () => slave.arm.right = new App.Entity.LimbState())
+			.addValue("Amputated", false, () => slave.arm.right = null);
+
+		State.temporary.LL = hasLeftLeg(slave);
+		options.addOption("Left leg", "LL", State.temporary)
+			.addValue("Healthy", true, () => slave.leg.left = new App.Entity.LimbState())
+			.addValue("Amputated", false, () => slave.leg.left = null);
+
+		State.temporary.RL = hasRightLeg(slave);
+		options.addOption("Right leg", "RL", State.temporary)
+			.addValue("Healthy", true, () => slave.leg.right = new App.Entity.LimbState())
+			.addValue("Amputated", false, () => slave.leg.right = null);
+	}
+
+	el.append(options.render());
+	return el;
+};
+
+/**
+ * @param {App.Entity.SlaveState} slave
+ * @param {boolean} cheat
+ * @returns {DocumentFragment}
+ */
+App.StartingGirls.upper = function(slave, cheat = false) {
+	const el = new DocumentFragment();
+	const {he} = getPronouns(slave);
+	const options = new App.UI.OptionsGroup();
+	let option;
 	option = options.addOption("Facial appearance", "faceShape", slave)
 		.addValue("Normal", "normal");
 	if (V.seeDicks !== 0) {
@@ -988,6 +1024,20 @@ App.StartingGirls.physical = function(slave, cheat = false) {
 		option.addValue("Unnaturally broad", 3);
 	}
 
+	el.append(options.render());
+	return el;
+};
+
+/**
+ * @param {App.Entity.SlaveState} slave
+ * @param {boolean} cheat
+ * @returns {DocumentFragment}
+ */
+App.StartingGirls.lower = function(slave, cheat = false) {
+	const el = new DocumentFragment();
+	const {he} = getPronouns(slave);
+	const options = new App.UI.OptionsGroup();
+	let option;
 	options.addOption("Hips implant", "hipsImplant", slave)
 		.addValueList([["Very narrow", -2], ["Narrow", -1], ["Normal", 0], ["Broad", 1], ["Very broad", 2]]);
 
@@ -1276,28 +1326,6 @@ App.StartingGirls.physical = function(slave, cheat = false) {
 		]).pulldown();
 	}
 
-	if (V.seeExtreme === 1) {
-		State.temporary.LA = hasLeftArm(slave);
-		options.addOption("Left arm", "LA", State.temporary)
-			.addValue("Healthy", true, () => slave.arm.left = new App.Entity.LimbState())
-			.addValue("Amputated", false, () => slave.arm.left = null);
-
-		State.temporary.RA = hasRightArm(slave);
-		options.addOption("Right arm", "RA", State.temporary)
-			.addValue("Healthy", true, () => slave.arm.right = new App.Entity.LimbState())
-			.addValue("Amputated", false, () => slave.arm.right = null);
-
-		State.temporary.LL = hasLeftLeg(slave);
-		options.addOption("Left leg", "LL", State.temporary)
-			.addValue("Healthy", true, () => slave.leg.left = new App.Entity.LimbState())
-			.addValue("Amputated", false, () => slave.leg.left = null);
-
-		State.temporary.RL = hasRightLeg(slave);
-		options.addOption("Right leg", "RL", State.temporary)
-			.addValue("Healthy", true, () => slave.leg.right = new App.Entity.LimbState())
-			.addValue("Amputated", false, () => slave.leg.right = null);
-	}
-
 	el.append(options.render());
 	return el;
 };
diff --git a/src/npc/startingGirls/startingGirlsPassage.js b/src/npc/startingGirls/startingGirlsPassage.js
index a7c4760516bf639bcbce084264c8f844e4423082..b486cf823c92184b21b78b7936e6baa137f6aa72 100644
--- a/src/npc/startingGirls/startingGirlsPassage.js
+++ b/src/npc/startingGirls/startingGirlsPassage.js
@@ -377,6 +377,8 @@ App.StartingGirls.passage = function() {
 	const tabCaptions = {
 		"profile": 'Profile',
 		"physical": 'Physical',
+		"upper": 'Upper',
+		"lower": 'Lower',
 		"mental": 'Mental',
 		"skills": 'Skills',
 		"family": 'Family',
@@ -389,6 +391,8 @@ App.StartingGirls.passage = function() {
 	tabBar.append(
 		App.UI.tabBar.tabButton('profile', tabCaptions.profile),
 		App.UI.tabBar.tabButton('physical', tabCaptions.physical),
+		App.UI.tabBar.tabButton('upper', tabCaptions.upper),
+		App.UI.tabBar.tabButton('lower', tabCaptions.lower),
 		App.UI.tabBar.tabButton('mental', tabCaptions.mental),
 		App.UI.tabBar.tabButton('skills', tabCaptions.skills),
 		App.UI.tabBar.tabButton('family', tabCaptions.family),
@@ -399,6 +403,8 @@ App.StartingGirls.passage = function() {
 
 	el.append(App.UI.tabBar.makeTab('profile', makeSpanIded("content-profile", App.StartingGirls.profile(V.activeSlave))));
 	el.append(App.UI.tabBar.makeTab('physical', makeSpanIded("content-physical", App.StartingGirls.physical(V.activeSlave))));
+	el.append(App.UI.tabBar.makeTab('upper', makeSpanIded("content-upper", App.StartingGirls.upper(V.activeSlave))));
+	el.append(App.UI.tabBar.makeTab('lower', makeSpanIded("content-lower", App.StartingGirls.lower(V.activeSlave))));
 	el.append(App.UI.tabBar.makeTab('mental', makeSpanIded("content-mental", App.StartingGirls.mental(V.activeSlave))));
 	el.append(App.UI.tabBar.makeTab('skills', makeSpanIded("content-skills", App.StartingGirls.skills(V.activeSlave))));
 	el.append(App.UI.tabBar.makeTab('family', makeSpanIded("content-family", App.Intro.editFamily(V.activeSlave))));