diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt
index 4bd49fb8953eb04ea8bc460c50f5ee090ffd6706..efc598d180d04457c07a77bb74b3972d33db074e 100644
--- a/slave variables documentation - Pregmod.txt	
+++ b/slave variables documentation - Pregmod.txt	
@@ -1474,7 +1474,7 @@ type of kemonomimi ears if any
 "inu"
 "kit"
 "tanuki"
-"human"
+"normal"
 
 earTColor:
 
diff --git a/src/004-base/organFarmBase.js b/src/004-base/organFarmBase.js
index 852f65358e76144f4aaad9601a48cb01affc3d0d..928194873802acad9be253136115ff9142ab1bc9 100644
--- a/src/004-base/organFarmBase.js
+++ b/src/004-base/organFarmBase.js
@@ -26,7 +26,7 @@ App.Medicine.Organ = class {
 	 * @param {number} time
 	 * @param {function(App.Entity.SlaveState):boolean} canGrow
 	 * @param {string[]} dependencies
-	 * @param {App.Data.OrganImplantAction[]} actions
+	 * @param {App.Medicine.OrganImplantAction[]} actions
 	 */
 	constructor({id, name, tooltip, cost, time, canGrow = () => true, dependencies = [], actions= []} = {}) {
 		this.id = id;
diff --git a/src/js/organFarm.js b/src/js/organFarm.js
deleted file mode 100644
index deb96513f8186a7b2bd443ef817f030c0dfd7ce8..0000000000000000000000000000000000000000
--- a/src/js/organFarm.js
+++ /dev/null
@@ -1,105 +0,0 @@
-App.Medicine.initOrganFarm = function initOrganFarm() {
-	new App.Medicine.Organ({
-		id: "penis", name: "Penis", tooltip: "will add a prostate if one is not already present", cost: 5000, time: 5,
-		canGrow: () => (V.seeDicks !== 0 || V.makeDicks === 1),
-		actions: [
-			new App.Medicine.OrganImplantAction({
-				name: "Implant", healthImpact: 20, surgeryType: "addDick",
-				canImplant: slave => (slave.dick <= 0),
-				implantError: () => "this slave already has a penis",
-				implant: slave => {
-					if (slave.prostate === 0) {
-						slave.prostate = 1;
-					}
-					slave.dick = 2;
-					slave.clit = 0;
-					slave.foreskin = slave.dick;
-				}
-			})
-		]
-	});
-
-	new App.Medicine.Organ({
-		id: "testicles", name: "Testicles",
-		tooltip: "will add a prostate if one is not already present; requires a penis for successful implantation",
-		cost: 5000, time: 10, canGrow: () => (V.seeDicks !== 0 || V.makeDicks === 1), dependencies: ["penis"],
-		actions: [
-			new App.Medicine.OrganImplantAction({
-				name: "Implant", healthImpact: 20, surgeryType: "addBalls",
-				canImplant: slave => (slave.balls <= 0 && slave.dick > 0),
-				implantError: slave => {
-					if (slave.dick === 0) {
-						return "This slave lacks the penis necessary to accept testicles.";
-					} else {
-						return "This slave already has testicles.";
-					}
-				},
-				implant: slave => {
-					if (slave.prostate === 0) {
-						slave.prostate = 1;
-					}
-					slave.balls = 2;
-					slave.ballType = "human";
-					slave.scrotum = 2;
-					if (slave.pubertyAgeXY === 0) {
-						if (V.precociousPuberty === 1) {
-							if (slave.physicalAge >= V.potencyAge) {
-								slave.pubertyAgeXY = slave.physicalAge + 1;
-							}
-						} else {
-							if (slave.physicalAge >= V.potencyAge) {
-								slave.pubertyXY = 1;
-							}
-						}
-					}
-				}
-			}),
-			new App.Medicine.OrganImplantAction({
-				name: "Implant",
-				tooltip: "You can forgo standard procedure and implant testicles directly into $his abdomen.",
-				healthImpact: 20, surgeryType: "addTesticles", autoImplant: false,
-				canImplant: slave => (slave.dick === 0 && slave.balls <= 0 && slave.ballType !== "human"),
-				implantError: slave => ((slave.balls > 0) ? `This slave already has ${slave.ballType} testicles.` : ""),
-				implant: slave => {
-					if (slave.prostate === 0) {
-						slave.prostate = 1;
-					}
-					slave.balls = 2;
-					slave.ballType = "human";
-					if (slave.pubertyAgeXY === 0) {
-						if (V.precociousPuberty === 1) {
-							if (slave.physicalAge >= V.potencyAge) {
-								slave.pubertyAgeXY = slave.physicalAge + 1;
-							}
-						} else {
-							if (slave.physicalAge >= V.potencyAge) {
-								slave.pubertyXY = 1;
-							}
-						}
-					}
-				}
-			}),
-			new App.Medicine.OrganImplantAction({
-				name: "Replace", tooltip: "You can replace the existing testicles with a new pair.", healthImpact: 20,
-				surgeryType: "addTesticles", autoImplant: false,
-				canImplant: slave => (slave.balls > 0 && slave.ballType !== "human"),
-				implantError: slave => (slave.balls > 0 ? "This slave already has human testicles." : ""),
-				implant: slave => {
-					slave.balls = 2;
-					slave.ballType = "human";
-					if (slave.pubertyAgeXY === 0) {
-						if (V.precociousPuberty === 1) {
-							if (slave.physicalAge >= V.potencyAge) {
-								slave.pubertyAgeXY = slave.physicalAge + 1;
-							}
-						} else {
-							if (slave.physicalAge >= V.potencyAge) {
-								slave.pubertyXY = 1;
-							}
-						}
-					}
-				}
-			})
-		]
-	});
-};
diff --git a/src/js/organs.js b/src/js/organs.js
new file mode 100644
index 0000000000000000000000000000000000000000..99bb8ed9be20739c5778396d3e52d97012884333
--- /dev/null
+++ b/src/js/organs.js
@@ -0,0 +1,348 @@
+App.Medicine.initOrganFarm = function() {
+	new App.Medicine.Organ({
+		id: "penis", name: "Penis", tooltip: "will add a prostate if one is not already present", cost: 5000, time: 5,
+		canGrow: () => (V.seeDicks !== 0 || V.makeDicks === 1),
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Implant", healthImpact: 20, surgeryType: "addDick",
+				canImplant: slave => (slave.dick <= 0),
+				implantError: () => "this slave already has a penis",
+				implant: slave => {
+					if (slave.prostate === 0) {
+						slave.prostate = 1;
+					}
+					slave.dick = 2;
+					slave.clit = 0;
+					slave.foreskin = slave.dick;
+				}
+			})
+		]
+	});
+
+	new App.Medicine.Organ({
+		id: "foreskin", name: "Foreskin", cost: 2500, time: 5,
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Graft on", healthImpact: 10, surgeryType: "addForeskin",
+				canImplant: slave => (slave.foreskin <= 0),
+				implantError: slave => `This slave already has a ${slave.dick > 0 ? "foreskin" : "clitoral hood"}.`,
+				implant: slave => {
+					if (slave.dick > 0) {
+						slave.foreskin = slave.dick;
+					} else if (slave.clit > 0) {
+						slave.foreskin = slave.clit;
+					} else {
+						slave.foreskin = 1;
+					}
+				}
+			})
+		]
+	});
+
+	new App.Medicine.Testicles({id: "testicles", name: "Testicles", ballType: "human", animal: false});
+	new App.Medicine.Testicles({id: "pigTesticles", name: "Pig testicles", ballType: "pig", animal: true});
+	new App.Medicine.Testicles({id: "dogTesticles", name: "Dog testicles", ballType: "dog", animal: true});
+	new App.Medicine.Testicles({id: "horseTesticles", name: "Horse testicles", ballType: "horse", animal: true});
+	new App.Medicine.Testicles({id: "cowTesticles", name: "Cow testicles", ballType: "cow", animal: true});
+
+	new App.Medicine.Organ({
+		id: "scrotum", name: "Scrotum", tooltip: "requires balls for successful implantation", cost: 2500, time: 5,
+		dependencies: ["testicles", "pigTesticles", "dogTesticles", "horseTesticles", "cowTesticles"],
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Graft on", healthImpact: 10, surgeryType: "addScrotum",
+				canImplant: slave => (slave.scrotum <= 0 && slave.balls > 0),
+				implantError: slave => (slave.scrotum > 0) ? "This slave already has a scrotum." : "This slave lacks the balls necessary to accept a scrotum.",
+				implant: slave => {
+					slave.scrotum = slave.balls;
+				}
+			})
+		]
+	});
+
+	new App.Medicine.Ovaries({id: "ovaries", name: "Ovaries", eggType: "human", pregData: "human", animal: false});
+	new App.Medicine.Ovaries({id: "pigOvaries", name: "Pig ovaries", eggType: "pig", pregData: "pig", animal: true});
+	new App.Medicine.Ovaries({
+		id: "dogOvaries",
+		name: "Dog ovaries",
+		eggType: "dog",
+		pregData: "canineM",
+		animal: true
+	});
+	new App.Medicine.Ovaries({
+		id: "horseOvaries",
+		name: "Horse ovaries",
+		eggType: "horse",
+		pregData: "equine",
+		animal: true
+	});
+	new App.Medicine.Ovaries({id: "cowOvaries", name: "Cow ovaries", eggType: "cow", pregData: "cow", animal: true});
+
+	new App.Medicine.AnalWomb({
+		id: "mpreg",
+		name: "Anal womb and ovaries",
+		eggType: "human",
+		pregData: "human",
+		animal: false
+	});
+	new App.Medicine.AnalWomb({
+		id: "mpregPig",
+		name: "Anal pig womb and ovaries",
+		eggType: "pig",
+		pregData: "pig",
+		animal: true
+	});
+	new App.Medicine.AnalWomb({
+		id: "mpregDog",
+		name: "Anal dog womb and ovaries",
+		eggType: "dog",
+		pregData: "canineM",
+		animal: true
+	});
+	new App.Medicine.AnalWomb({
+		id: "mpregHorse",
+		name: "Anal horse womb and ovaries",
+		eggType: "horse",
+		pregData: "equine",
+		animal: true
+	});
+	new App.Medicine.AnalWomb({
+		id: "mpregCow",
+		name: "Anal cow womb and ovaries",
+		eggType: "cow",
+		pregData: "cow",
+		animal: true
+	});
+
+	new App.Medicine.Organ({
+		id: "freshOvaries", name: "Younger Ovaries",
+		tooltip: "Requires a womb for successful implantation",
+		cost: 10000, time: 10,
+		canGrow: () => (V.youngerOvaries === 1),
+		dependencies: ["ovaries", "pigOvaries", "dogOvaries", "horseOvaries", "cowOvaries", "mpreg", "mpregPig", "mpregDog", "mpregHorse", "mpregCow"],
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Implant", healthImpact: 20, surgeryType: "freshOvaries",
+				canImplant: s => ((s.mpreg !== 0 || s.ovaries !== 0) && s.bellyImplant === -1 && s.physicalAge < 70),
+				implantError: s => (s.physicalAge >= 70) ? "This slave's body is too old to handle pregnancy." : "This slave lacks a viable womb.",
+				implant: s => {
+					if (s.ovaryAge >= 47) {
+						s.ovaryAge = 45;
+					} else {
+						s.ovaryAge = -2; // It shouldn't matter if this goes negative as it is just a signal for menopause to occur.
+					}
+					if (s.preg < 0) {
+						s.preg = 0;
+					}
+					if (s.pubertyXX === 0 && s.physicalAge >= V.fertilityAge) {
+						if (V.precociousPuberty === 1) {
+							s.pubertyAgeXX = s.physicalAge + 1;
+						} else {
+							s.pubertyXX = 1;
+						}
+					}
+				}
+			})
+		]
+	});
+
+	new App.Medicine.Organ({
+		id: "asexualReproOvaries", name: "Asexual reproduction modification",
+		tooltip: "Requires existing ovaries for successful implantation.",
+		cost: 10000, time: 10,
+		canGrow: () => (V.asexualReproOvaries === 1),
+		dependencies: ["ovaries", "pigOvaries", "dogOvaries", "horseOvaries", "cowOvaries", "mpreg", "mpregPig", "mpregDog", "mpregHorse", "mpregCow"],
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Implant", healthImpact: 20, surgeryType: "asexualReproOvaries",
+				canImplant: s => (s.mpreg !== 0 || s.ovaries !== 0),
+				implantError: () => "This slave lacks ovaries.",
+				implant: s => {
+					if (s.preg < 0) {
+						s.preg = 0;
+					}
+					s.eggType = "human";
+					s.pregData = clone(setup.pregData.human);
+					if (s.pubertyXX === 0 && s.physicalAge >= V.fertilityAge) {
+						if (V.precociousPuberty === 1) {
+							s.pubertyAgeXX = s.physicalAge + 1;
+						} else {
+							s.pubertyXX = 1;
+						}
+					}
+					s.ovaImplant = "asexual";
+				}
+			})
+		]
+	});
+
+	new App.Medicine.Organ({
+		id: "prostate", name: "Prostate", cost: 5000, time: 5,
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Implant", healthImpact: 20, surgeryType: "addProstate",
+				canImplant: s => (s.prostate === 0),
+				implantError: () => "This slave already has a prostate.",
+				implant: s => {
+					s.prostate = 1;
+				}
+			})
+		]
+	});
+
+	new App.Medicine.Organ({
+		id: "leftEye", name: "Left Eye", cost: 5000, time: 10,
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Implant", healthImpact: 10, surgeryType: "newEyes",
+				canImplant: s => (getLeftEyeVision(s) === 0 && getLeftEyeType(s) !== 2),
+				implantError: () => "Slave has a working left eye.",
+				implant: s => {
+					eyeSurgery(s, "left", "normal");
+				}
+			}),
+			new App.Medicine.OrganImplantAction({
+				name: "Replace", tooltip: "Replace the existing ocular implant with an organic eye.",
+				healthImpact: 10, surgeryType: "newEyes", autoImplant: false,
+				canImplant: s => (getLeftEyeType(s) === 2),
+				implantError: () => "",
+				implant: s => {
+					eyeSurgery(s, "left", "normal");
+				}
+			})
+		]
+	});
+	new App.Medicine.Organ({
+		id: "rightEye", name: "Right Eye", cost: 5000, time: 10,
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Implant", healthImpact: 10, surgeryType: "newEyes",
+				canImplant: s => (getRightEyeVision(s) === 0 && getRightEyeType(s) !== 2),
+				implantError: () => "Slave has a working right eye.",
+				implant: s => {
+					eyeSurgery(s, "right", "normal");
+				}
+			}),
+			new App.Medicine.OrganImplantAction({
+				name: "Replace", tooltip: "Replace the existing ocular implant with an organic eye.",
+				healthImpact: 20, surgeryType: "newEyes", autoImplant: false,
+				canImplant: s => (getRightEyeType(s) === 2),
+				implantError: () => "",
+				implant: s => {
+					eyeSurgery(s, "right", "normal");
+				}
+			})
+		]
+	});
+
+	new App.Medicine.Organ({
+		id: "ears", name: "Normal Ears", cost: 1000, time: 2,
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Attach", healthImpact: 15, surgeryType: "earMinor",
+				canImplant: s => (s.earShape === "none"),
+				implantError: () => "This slave already has ears.",
+				implant: s => {
+					s.earShape = "normal";
+					if (s.hears === -1) {
+						s.hears = 0;
+					}
+				}
+			}),
+			new App.Medicine.OrganImplantAction({
+				name: "Replace", tooltip: "Replace current ears with normal human ears.",
+				healthImpact: 20, surgeryType: "earMinor", autoImplant: false,
+				canImplant: s => (s.earShape !== "normal"),
+				implantError: () => "This slave already has normal ears.",
+				implant: s => {
+					s.earShape = "normal";
+				}
+			})
+		]
+	});
+	new App.Medicine.Organ({
+		id: "topEars", name: "Top Ears", cost: 1000, time: 2,
+		canGrow: () => (V.surgeryUpgrade >= 1),
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Attach", healthImpact: 10, surgeryType: "earMinor",
+				canImplant: s => (s.earT === "none"),
+				implantError: () => "This slave already has ears at the top of the head.",
+				implant: s => {
+					s.earT = "normal";
+					s.earTColor = "hairless";
+				}
+			}),
+			new App.Medicine.OrganImplantAction({
+				name: "Replace", tooltip: "Replace current top ears with normal ears.",
+				healthImpact: 20, surgeryType: "earMinor", autoImplant: false,
+				canImplant: s => (s.earT !== "normal"),
+				implantError: () => "This slave already has normal ears at the top of the head.",
+				implant: s => {
+					s.earT = "normal";
+					s.earTColor = "hairless";
+				}
+			})
+		]
+	});
+
+	new App.Medicine.Organ({
+		id: "cochleae", name: "Cochleae", cost: 8000, time: 6,
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Implant", healthImpact: 20, surgeryType: "undeafen",
+				canImplant: s => (s.hears <= -2 && s.earImplant === 0),
+				implantError: () => "This slave already has working ears.",
+				implant: s => {
+					s.hears = 0;
+				}
+			}),
+			new App.Medicine.OrganImplantAction({
+				name: "Replace", tooltip: "Remove cochlear implants before implanting organic cochleae",
+				healthImpact: 20, surgeryType: "newEars", autoImplant: false,
+				canImplant: s => (s.earImplant === 1),
+				implantError: () => "",
+				implant: s => {
+					s.hears = 0;
+					s.earImplant = 0;
+				}
+			})
+		]
+	});
+
+	new App.Medicine.Organ({
+		id: "voicebox", name: "Vocal Cords", cost: 5000, time: 5,
+		actions: [
+			new App.Medicine.OrganImplantAction({
+				name: "Implant", healthImpact: 10, surgeryType: "restoreVoice",
+				canImplant: s => (s.voice === 0 && s.electrolarynx === 0),
+				implantError: () => "This slave is not mute.",
+				implant: s => {
+					if (s.ovaries === 1 && s.hormoneBalance >= 200) {
+						s.voice = 3;
+					} else if (s.balls > 0 || s.hormoneBalance < -20) {
+						s.voice = 1;
+					} else {
+						s.voice = 2;
+					}
+				}
+			}),
+			new App.Medicine.OrganImplantAction({
+				name: "Replace", tooltip: "Remove electrolarynx and implant organic vocal cords",
+				healthImpact: 20, surgeryType: "newVoice", autoImplant: false,
+				canImplant: s => (s.electrolarynx === 1),
+				implantError: () => "",
+				implant: s => {
+					s.electrolarynx = 0;
+					if (s.ovaries === 1 && s.hormoneBalance >= 200) {
+						s.voice = 3;
+					} else if (s.balls > 0 || s.hormoneBalance < -20) {
+						s.voice = 1;
+					} else {
+						s.voice = 2;
+					}
+				}
+			})
+		]
+	});
+};
diff --git a/src/js/reproductiveOrgans.js b/src/js/reproductiveOrgans.js
new file mode 100644
index 0000000000000000000000000000000000000000..b8879a334e0ec434d09f64f64b15a925a9a9636d
--- /dev/null
+++ b/src/js/reproductiveOrgans.js
@@ -0,0 +1,275 @@
+App.Medicine.TesticlesImplantAction = class extends App.Medicine.OrganImplantAction {
+	/**
+	 * @param {string} name
+	 * @param {string} tooltip
+	 * @param {string} ballType
+	 * @param {boolean} animal
+	 * @param {boolean} autoImplant
+	 * @param {function(App.Entity.SlaveState):boolean} canImplant
+	 * @param {function(App.Entity.SlaveState):string} implantError
+	 * @param {function(App.Entity.SlaveState)} implant
+	 */
+	constructor({name, tooltip = "", ballType, animal, autoImplant = true, canImplant, implantError, implant} = {}) {
+		super({
+			name: name,
+			tooltip: tooltip,
+			healthImpact: 20,
+			surgeryType: animal ? "addAnimalBalls" : "addBalls",
+			autoImplant: autoImplant,
+			canImplant: s => (!this.animal || V.animalTesticles > 0) && canImplant(s),
+			implantError: s => (this.animal && V.animalTesticles === 0) ? "" : implantError(s),
+			implant: implant
+		});
+		this.animal = animal;
+		this.ballType = ballType;
+	}
+};
+
+App.Medicine.Testicles = class extends App.Medicine.Organ {
+	/**
+	 * @param {string} id
+	 * @param {string} name
+	 * @param {string} ballType
+	 * @param {boolean} animal
+	 */
+	constructor({id, name, ballType, animal} = {}) {
+		super({
+			id: id, name: name,
+			tooltip: "will add a prostate if one is not already present; requires a penis for successful implantation",
+			cost: 5000, time: 10,
+			canGrow: () => (!this.animal || V.animalTesticles > 0), dependencies: ["penis"],
+			actions: [
+				new App.Medicine.TesticlesImplantAction({
+					name: "Implant", ballType: ballType, animal: animal,
+					canImplant: slave => (slave.balls <= 0 && slave.dick > 0),
+					implantError: slave => {
+						if (slave.dick === 0) {
+							return "This slave lacks the penis necessary to accept testicles.";
+						} else {
+							return "This slave already has testicles.";
+						}
+					},
+					implant: slave => {
+						if (slave.prostate === 0) {
+							slave.prostate = 1;
+						}
+						slave.balls = 2;
+						slave.ballType = this.ballType;
+						slave.scrotum = 2;
+						if (slave.pubertyAgeXY === 0) {
+							if (V.precociousPuberty === 1) {
+								if (slave.physicalAge >= V.potencyAge) {
+									slave.pubertyAgeXY = slave.physicalAge + 1;
+								}
+							} else {
+								if (slave.physicalAge >= V.potencyAge) {
+									slave.pubertyXY = 1;
+								}
+							}
+						}
+					}
+				}),
+				new App.Medicine.TesticlesImplantAction({
+					name: "Implant",
+					tooltip: "You can forgo standard procedure and implant testicles directly into $his abdomen.",
+					ballType: ballType, animal: animal, surgeryType: "addTesticles", autoImplant: false,
+					canImplant: slave => (slave.dick === 0 && slave.balls <= 0),
+					implantError: slave => ((slave.balls > 0) ? "This slave already has testicles." : ""),
+					implant: slave => {
+						if (slave.prostate === 0) {
+							slave.prostate = 1;
+						}
+						slave.balls = 2;
+						slave.ballType = this.ballType;
+						if (slave.pubertyAgeXY === 0) {
+							if (V.precociousPuberty === 1) {
+								if (slave.physicalAge >= V.potencyAge) {
+									slave.pubertyAgeXY = slave.physicalAge + 1;
+								}
+							} else {
+								if (slave.physicalAge >= V.potencyAge) {
+									slave.pubertyXY = 1;
+								}
+							}
+						}
+					}
+				}),
+				new App.Medicine.TesticlesImplantAction({
+					name: "Replace",
+					tooltip: "You can replace the existing testicles with a new pair.",
+					healthImpact: 20,
+					surgeryType: "addTesticles",
+					autoImplant: false,
+					canImplant: slave => (slave.balls > 0 && slave.ballType !== this.ballType),
+					implantError: slave => (slave.balls > 0 ? `This slave already has ${this.ballType} testicles.` : ""),
+					implant: slave => {
+						slave.balls = 2;
+						slave.ballType = this.ballType;
+						if (slave.pubertyAgeXY === 0) {
+							if (V.precociousPuberty === 1) {
+								if (slave.physicalAge >= V.potencyAge) {
+									slave.pubertyAgeXY = slave.physicalAge + 1;
+								}
+							} else {
+								if (slave.physicalAge >= V.potencyAge) {
+									slave.pubertyXY = 1;
+								}
+							}
+						}
+					}
+				})
+			]
+		});
+		this.animal = animal;
+	}
+};
+
+App.Medicine.OvariesImplantAction = class extends App.Medicine.OrganImplantAction {
+	/**
+	 * @param {string} name
+	 * @param {string} tooltip
+	 * @param {string} eggType
+	 * @param {string} pregData
+	 * @param {boolean} animal
+	 * @param {boolean} autoImplant
+	 * @param {function(App.Entity.SlaveState):boolean} canImplant
+	 * @param {function(App.Entity.SlaveState):string} implantError
+	 * @param {function(App.Entity.SlaveState)} implant
+	 */
+	constructor({name, tooltip = "", eggType, pregData, animal, autoImplant = true, canImplant, implantError, implant} = {}) {
+		super({
+			name: name, tooltip: tooltip, healthImpact: 20,
+			surgeryType: animal ? "addAnimalOvaries" : "addOvaries", autoImplant: autoImplant,
+			canImplant: s => (!this.animal || V.animalTesticles > 0) && canImplant(s),
+			implantError: s => (this.animal && V.animalTesticles === 0) ? "" : implantError(s),
+			implant: implant
+		});
+		this.animal = animal;
+		this.eggType = eggType;
+		this.pregData = pregData;
+	}
+};
+
+App.Medicine.Ovaries = class extends App.Medicine.Organ {
+	/**
+	 * @param {string} id
+	 * @param {string} name
+	 * @param {string} eggType
+	 * @param {string} pregData
+	 * @param {boolean} animal
+	 */
+	constructor({id, name, eggType, pregData, animal} = {}) {
+		super({
+			id: id, name: name, tooltip: "Requires a vagina for successful implantation",
+			cost: 10000, time: 10,
+			canGrow: () => (!this.animal || V.animalTesticles > 0),
+			actions: [
+				new App.Medicine.OvariesImplantAction({
+					name: "Implant", eggType: eggType, pregData: pregData, animal: animal,
+					canImplant: s => (s.vagina >= 0 && s.ovaries <= 0 && s.mpreg === 0 && s.bellyImplant === -1),
+					implantError: s => {
+						if (s.vagina < 0) { return "This slave lacks the vagina necessary to accept ovaries."; }
+						if (s.ovaries >= 0) { return "This slave already has ovaries."; }
+						return "This slave's body cavity is filled with another organ.";
+					},
+					implant: s => {
+						s.ovaries = 1;
+						s.eggType = this.eggType;
+						s.preg = 0;
+						s.pregData = clone(setup.pregData[this.pregData]);
+						if (s.pubertyXX === 0 && s.physicalAge >= V.fertilityAge) {
+							if (V.precociousPuberty === 1) {
+								s.pubertyAgeXX = s.physicalAge + 1;
+							} else {
+								s.pubertyXX = 1;
+							}
+						}
+					}
+				}),
+				new App.Medicine.OvariesImplantAction({
+					name: "Replace",
+					tooltip: "You can replace the existing ovaries with a new pair",
+					eggType: eggType, pregData: pregData, animal: animal,
+					autoImplant: false,
+					canImplant: s => (s.vagina >= 0 && s.mpreg === 0 && s.bellyImplant === -1 && s.eggType !== this.eggType),
+					implantError: s => (s.eggType === this.eggType) ? `This slave already has ${s.eggType} ovaries.` : "",
+					implant: s => {
+						s.eggType = this.eggType;
+						s.preg = 0;
+						s.pregData = clone(setup.pregData[this.pregData]);
+						if (s.pubertyXX === 0 && s.physicalAge >= V.fertilityAge) {
+							if (V.precociousPuberty === 1) {
+								s.pubertyAgeXX = s.physicalAge + 1;
+							} else {
+								s.pubertyXX = 1;
+							}
+						}
+					}
+				})
+			]
+		});
+		this.animal = animal;
+	}
+};
+
+App.Medicine.AnalWombImplantAction = class extends App.Medicine.OrganImplantAction {
+	/**
+	 * @param {string} eggType
+	 * @param {string} pregData
+	 * @param {boolean} animal
+	 */
+	constructor({eggType, pregData, animal} = {}) {
+		super({
+			name: "Implant", healthImpact: 40,
+			surgeryType: "mpreg",
+			canImplant: s => ((!this.animal || V.animalTesticles > 0) && s.ovaries === 0 && s.vagina <= -1 && s.mpreg === 0 && s.bellyImplant < 0),
+			implantError: s => {
+				if (this.animal && V.animalTesticles === 0) { return ""; }
+				if (s.bellyImplant >= 0) {return "This slave has a fillable abdominal implant."; }
+				return "This slave has existing reproductive Organs.";
+			},
+			implant: s => {
+				s.mpreg = 1;
+				s.eggType = this.eggType;
+				s.preg = 0;
+				s.pregData = clone(setup.pregData[pregData]);
+				if (s.pubertyXX === 0 && s.physicalAge >= V.fertilityAge) {
+					if (V.precociousPuberty === 1) {
+						s.pubertyAgeXX = s.physicalAge + 1;
+					} else {
+						s.pubertyXX = 1;
+					}
+				}
+			}
+		});
+		this.animal = animal;
+		this.eggType = eggType;
+		this.pregData = pregData;
+	}
+};
+
+App.Medicine.AnalWomb = class extends App.Medicine.Organ {
+	/**
+	 * @param {string} id
+	 * @param {string} name
+	 * @param {string} eggType
+	 * @param {string} pregData
+	 * @param {boolean} animal
+	 */
+	constructor({id, name, eggType, pregData, animal} = {}) {
+		super({
+			id: id, name: name,
+			tooltip: "The slave must not have female reproductive organs for successful implantation.",
+			cost: 20000, time: 10,
+			canGrow: () => (V.arcologies[0].FSGenderRadicalistResearch === 1 && (!this.animal || V.animalMpreg > 0)),
+			actions: [
+				new App.Medicine.AnalWombImplantAction({
+					eggType: eggType,
+					pregData: pregData,
+					animal: animal
+				})
+			]
+		});
+		this.animal = animal;
+	}
+};