From 26eca3c76b84ce3d001ff4bcf233e6e88e3ba808 Mon Sep 17 00:00:00 2001
From: ezsh <ezsh.junk@gmail.com>
Date: Sun, 5 May 2024 10:47:49 +0200
Subject: [PATCH] Add enum for consumer grade drugs

---
 devTools/types/FC/human.d.ts                  |  26 +-
 js/003-data/constants.js                      |  23 +
 package.json                                  |   2 +-
 src/endWeek/endWeek.js                        |   4 +-
 src/endWeek/player/prDrugs.js                 |  66 +--
 src/endWeek/player/prHealth.js                |   2 +-
 .../player/prLongTermPhysicalEffects.js       |   2 +-
 src/endWeek/player/prPregnancy.js             |   2 +-
 src/events/RESS/breedingBull.js               |   2 +-
 src/js/economyJS.js                           |  48 +-
 src/js/pregJS.js                              |   7 +-
 src/js/states/HumanState.js                   |  38 --
 src/js/states/PlayerState.js                  |   4 +
 src/js/states/SlaveState.js                   |  38 ++
 src/player/doctorConsultation.js              | 105 ++---
 src/player/managePersonalAffairs.js           | 430 ++++++------------
 16 files changed, 345 insertions(+), 454 deletions(-)

diff --git a/devTools/types/FC/human.d.ts b/devTools/types/FC/human.d.ts
index 81593fb6dd0..48d304f1fd8 100644
--- a/devTools/types/FC/human.d.ts
+++ b/devTools/types/FC/human.d.ts
@@ -4,7 +4,7 @@ declare global {
 		export type SlaveState = InstanceType<typeof App.Entity.SlaveState>;
 		export type TankSlaveState = InstanceType<typeof App.Entity.TankSlaveState>;
 		export type PlayerState = InstanceType<typeof App.Entity.PlayerState>;
-		export type HumanState = InstanceType<typeof App.Entity.HumanState> | FC.PlayerState | FC.SlaveState | FC.TankSlaveState;
+		export type HumanState = FC.PlayerState | FC.SlaveState | FC.TankSlaveState;
 		export type AnimalState = InstanceType<typeof App.Entity.Animal>;
 
 		export type DeepPartialSlaveState = DeepPartial<SlaveState>;
@@ -430,6 +430,30 @@ declare global {
 			STIM: "stimulants";
 		}
 
+		type ConsumerDrug = "lip enhancers" | "breast enhancers" | "butt enhancers" | "hip wideners" | "penis enlargers" | "clitoris enlargers" | "testicle enlargers" |
+			"lip reducers" | "breast reducers" | "butt reducers" | "penis reducers" | "clitoris reducers" | "testicle reducers" |
+			"stamina enhancers" | "fertility supplements" | "detox pills";
+		interface ConsumerDrugFreeze extends Record<string, ConsumerDrug> {
+			GROW_LIP: "lip enhancers";
+			GROW_BREAST: "breast enhancers";
+			GROW_BUTT: "butt enhancers";
+			GROW_HIP: "hip wideners";
+			GROW_PENIS: "penis enlargers";
+			GROW_CLIT: "clitoris enlargers";
+			GROW_TESTICLE: "testicle enlargers";
+			REDUCE_LIP: "lip reducers";
+			REDUCE_BREAST: "breast reducers";
+			REDUCE_BUTT: "butt reducers";
+			REDUCE_PENIS: "penis reducers";
+			REDUCE_CLIT: "clitoris reducers";
+			REDUCE_TESTICLE: "testicle reducers";
+			ENHANCE_STAMINA: "stamina enhancers";
+			ENHANCE_FERTILITY: "fertility supplements";
+			DETOX: "detox pills";
+		}
+
+		type PCDrug = Drug | ConsumerDrug;
+
 		type EarWear = WithNone<"hearing aids" | "muffling ear plugs" | "deafening ear plugs">;
 		type EarShape = WithNone<"holes" | "damaged" | "normal" | "pointy" | "elven" | "cow" | "robot" | "orcish" | "sheep" | "deer" | "gazelle" | "bird" | "dragon">;
 		type EarTopType = WithNone<"normal" | "cat" | "leopard" | "tiger" | "jaguar" | "lion" | "dog" | "wolf" | "jackal" | "fox" | "raccoon" | "rabbit" | "squirrel"| "horse">;
diff --git a/js/003-data/constants.js b/js/003-data/constants.js
index c3cace50ab8..fc4e3449067 100644
--- a/js/003-data/constants.js
+++ b/js/003-data/constants.js
@@ -312,6 +312,29 @@ globalThis.Drug = Object.freeze({
 	STIM: "stimulants",
 });
 
+/**
+ * @type {FC.ConsumerDrugFreeze}
+ * @enum {string}
+ */
+globalThis.ConsumerDrug = Object.freeze({
+	GROW_LIP: "lip enhancers",
+	GROW_BREAST: "breast enhancers",
+	GROW_BUTT: "butt enhancers",
+	GROW_HIP: "hip wideners",
+	GROW_PENIS: "penis enlargers",
+	GROW_CLIT: "clitoris enlargers",
+	GROW_TESTICLE: "testicle enlargers",
+	REDUCE_LIP: "lip reducers",
+	REDUCE_BREAST: "breast reducers",
+	REDUCE_BUTT: "butt reducers",
+	REDUCE_PENIS: "penis reducers",
+	REDUCE_CLIT: "clitoris reducers",
+	REDUCE_TESTICLE: "testicle reducers",
+	ENHANCE_STAMINA: "stamina enhancers",
+	ENHANCE_FERTILITY: "fertility supplements",
+	DETOX: "detox pills",
+});
+
 /**
  * @type {FC.FaceShapeFreeze}
  * @enum {string}
diff --git a/package.json b/package.json
index 268cf74d6f5..08fa8937f8d 100644
--- a/package.json
+++ b/package.json
@@ -50,7 +50,7 @@
 		"node-watch": "^0.7.4",
 		"strip-ansi": "^7.1.0",
 		"ts-essentials": "^9.1.1",
-		"typescript": "^4.4.0"
+		"typescript": "*"
 	},
 	"dependencies": {
 		"autoprefixer": "^10.0.0",
diff --git a/src/endWeek/endWeek.js b/src/endWeek/endWeek.js
index d2beca55eb4..51977908dbd 100644
--- a/src/endWeek/endWeek.js
+++ b/src/endWeek/endWeek.js
@@ -249,7 +249,7 @@ globalThis.endWeek = (function() {
 			if (V.PC.diet === PCDiet.FERTILITY) {
 				V.PC.need *= 1.10;
 			}
-			if (V.PC.drugs === "fertility supplements") {
+			if (V.PC.drugs === ConsumerDrug.ENHANCE_FERTILITY) {
 				V.PC.need *= 1.10;
 			}
 			if (V.PC.forcedFertDrugs > 0) {
@@ -265,7 +265,7 @@ globalThis.endWeek = (function() {
 		if (V.PC.lusty) {
 			V.PC.need += 10;
 		}
-		if (V.PC.drugs === "stamina enhancers") {
+		if (V.PC.drugs === ConsumerDrug.ENHANCE_STAMINA) {
 			V.PC.need += 20;
 		}
 		if (V.PC.diet === PCDiet.EXOTIC) {
diff --git a/src/endWeek/player/prDrugs.js b/src/endWeek/player/prDrugs.js
index 7a06c91d15f..5bf5fa2b9f2 100644
--- a/src/endWeek/player/prDrugs.js
+++ b/src/endWeek/player/prDrugs.js
@@ -64,7 +64,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 				break;
 			case Drug.HORMONEBLOCK:
 				break; // hormone blockers take effect solely in prLongTermEffects - this is a placeholder to prevent the unrecognized drug handler from clearing .drugs
-			case "hip wideners":
+			case ConsumerDrug.GROW_HIP:
 				r.push(`The tablets aid your body with preparing for childbirth, at the cost of <span class="health dec">leaving you ill</span> from the excess hormones.`);
 				healthDamage(PC, random(3, 5));
 				break;
@@ -236,7 +236,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					}
 				}
 				break;
-			case "breast enhancers":
+			case ConsumerDrug.GROW_BREAST:
 				growth = 1 * gigantomastiaMod;
 				r.push(`You slap a <span class="change positive">dermal growth hormone patch on each breast every morning;</span>`);
 				if (PC.boobs < 800) {
@@ -620,7 +620,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.butt = 20;
 				}
 				break;
-			case "butt enhancers":
+			case ConsumerDrug.GROW_BUTT:
 				growth = 1 + rearLipedemaMod;
 				r.push(`You slap a <span class="change positive">dermal growth hormone patch on each buttock every morning;</span>`);
 				if (PC.butt < 2) {
@@ -758,7 +758,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					}
 				}
 				break;
-			case "lip enhancers":
+			case ConsumerDrug.GROW_LIP:
 				r.push(`You apply a series of <span class="change positive">dermal growth hormone patches along your lips before bed,</span> resulting in slow, but steady, growth.`);
 				if (PC.geneMods.NCS === 1) {
 					PC.lips += 1;
@@ -1004,8 +1004,8 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					}
 				}
 				break;
-			case "penis enlargers":
-			case "clitoris enlargers":
+			case ConsumerDrug.GROW_PENIS:
+			case ConsumerDrug.GROW_CLIT:
 				noGrowth = true;
 				growth = 60;
 				if (PC.geneMods.NCS === 1) {
@@ -1070,7 +1070,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 			case Drug.GROWPENIS:
 			case Drug.INTENSIVEPENIS:
 			case Drug.GROWCLIT:
-			case Drug.INTENSIVECLIT:				
+			case Drug.INTENSIVECLIT:
 				growth = 60 - (V.injectionUpgrade * 10);
 				if (PC.geneMods.NCS === 1) {
 					growth += 30;
@@ -1125,7 +1125,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					r.push(`Your <span class="ncs">NCS</span> manages to prevent any substantial growth this session, though your cum production is in overdrive.`);
 				}
 				break;
-			case "testicle enlargers":
+			case ConsumerDrug.GROW_TESTICLE:
 				noGrowth = true;
 				growth = 60;
 				if (PC.geneMods.NCS === 1) {
@@ -1302,7 +1302,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 				}
 				galactorrheaTriggerCheck();
 				break;
-			case "fertility supplements":
+			case ConsumerDrug.ENHANCE_FERTILITY:
 				r.push(`You take a fertility supplement with each of your meals.`);
 				if (PC.pregKnown === 1) {
 					if (PC.geneticQuirks.superfetation === 2 && (V.geneticMappingUpgrade !== 0 || PC.preg > 10 || PC.counter.birthsTotal > 0)) {
@@ -1347,18 +1347,18 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 						break;
 				}
 				break;
-			case "penis reducers":
+			case ConsumerDrug.REDUCE_PENIS:
 				r.push(`You apply a small dermal hormone patch to your ${PC.dick > 0 ? "penis" : PC.vagina >= 0 ? "clit" : "crotch"} before bed each night;`);
 				if (PC.dick > 1) {
 					if (random(1, 100) <= PC.dick * 10) {
-						r.push(`it defintely <span class="change positive">seems a little smaller.</span>`);
+						r.push(`it definitely <span class="change positive">seems a little smaller.</span>`);
 						PC.dick -= 1;
 					} else {
 						r.push(`you can't say it seems any smaller.`);
 					}
 				} else {
 					if (random(1, 100) <= PC.clit * 20 && PC.clit > 0) {
-						r.push(`it defintely <span class="change positive">seems a little smaller.</span>`);
+						r.push(`it definitely <span class="change positive">seems a little smaller.</span>`);
 						PC.clit -= 1;
 					} else {
 						r.push(`you can't say it seems any smaller.`);
@@ -1393,10 +1393,10 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 				}
 				PC.dick -= shrinkage;
 				break;
-			case "testicle reducers":
+			case ConsumerDrug.REDUCE_TESTICLE:
 				r.push(`You apply a small dermal hormone patch to your testicles before bed each night;`);
 				if (random(1, 100) <= PC.balls * 10) {
-					r.push(`they're defintely <span class="change positive">getting a little smaller.</span>`);
+					r.push(`they're definitely <span class="change positive">getting a little smaller.</span>`);
 					PC.balls -= 1;
 				} else {
 					r.push(`you can't say they seem to be getting any smaller.`);
@@ -1513,7 +1513,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 						break;
 				}
 				break;
-			case "lip reducers":
+			case ConsumerDrug.REDUCE_LIP:
 				r.push(`You apply a small <span class="change positive">dermal reduction patch to your lips</span> before bed each night; the process is slow, but consistent.`);
 				PC.lips -= 1;
 				break;
@@ -1547,7 +1547,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 				}
 				PC.lips -= shrinkage;
 				break;
-			case "breast reducers":
+			case ConsumerDrug.REDUCE_BREAST:
 				r.push(`You apply a small <span class="change positive">dermal reduction patch to each breast</span> before bed every night;`);
 				if (PC.geneticQuirks.gigantomastia === 2 || PC.geneticQuirks.macromastia === 2) {
 					r.push(`your breast growth works to counter their effects, but you're still slowing it down.`);
@@ -1596,7 +1596,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "butt reducers":
+			case ConsumerDrug.REDUCE_BUTT:
 				r.push(`You apply a small <span class="change positive">dermal reduction patch to each buttock</span> before bed every night;`);
 				if (rearLipedemaMod === 1) {
 					r.push(`your passive butt growth counters their effects, but at least you're holding it at bay.`);
@@ -1631,11 +1631,11 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 				}
 				PC.butt = Math.clamp(PC.butt, 0, 20);
 				break;
-			case "stamina enhancers":
+			case ConsumerDrug.ENHANCE_STAMINA:
 				r.push(`You take a couple stamina enhancing pills each morning to have some extra energy for more sex during the day.`);
 				// Consider tiredness here.
 				break;
-			case "detox pills":
+			case ConsumerDrug.DETOX:
 				r.push(`You take an aphrodisiac detoxification pill with each meal in an effort to kick your addiction. They're weaker than real aphrodisiacs, have none of the sexual benefits, and <span class="health dec">are still bad for you,</span> but sure beat dealing with the withdrawal.`);
 				// handled in prHealth
 				break;
@@ -1668,13 +1668,13 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 			} else {
 				PC.chem += 10;
 			}
-		} else if (PC.drugs === "detox pills" || PC.drugs === "hip wideners") {
+		} else if (PC.drugs === ConsumerDrug.DETOX || PC.drugs === ConsumerDrug.GROW_HIP) {
 			PC.chem += 2;
 		}
 		if (V.arcologies[0].FSBodyPuristLaw === 0 && V.healthyDrugsUpgrade === 0) {
 			if ([Drug.HORMONEENHANCE, Drug.PRIAPISM, Drug.STEROID, Drug.FERTILITY].includes(PC.drugs)) {
 				PC.chem += 1.5;
-			} else if (![Drug.NONE, Drug.SAGBGONE, Drug.ANTIAGE, Drug.PSYCHOSTIM, "breast enhancers", "breast reducers", "butt enhancers", "butt reducers", "lip enhancers", "lip reducers", "penis enlargers", "penis reducers", "clitoris enlargers", "clitoris reducers", "testicle enlargers", "testicle reducers", "fertility supplements", "stamina enhancers", Drug.APPETITESUPP, "detox pills"].includes(PC.drugs)) {
+			} else if (![Drug.NONE, Drug.SAGBGONE, Drug.ANTIAGE, Drug.PSYCHOSTIM, ConsumerDrug.GROW_BREAST, ConsumerDrug.REDUCE_BREAST, ConsumerDrug.GROW_BUTT, ConsumerDrug.REDUCE_BUTT, ConsumerDrug.GROW_LIP, ConsumerDrug.REDUCE_LIP, ConsumerDrug.GROW_PENIS, ConsumerDrug.REDUCE_PENIS, ConsumerDrug.GROW_CLIT, ConsumerDrug.REDUCE_CLIT, ConsumerDrug.GROW_TESTICLE, ConsumerDrug.REDUCE_TESTICLE, ConsumerDrug.ENHANCE_FERTILITY, ConsumerDrug.ENHANCE_STAMINA, Drug.APPETITESUPP, ConsumerDrug.DETOX].includes(PC.drugs)) {
 				if (!canEatFood(PC)) {
 					PC.chem += 1.5;
 					if (intensive) {
@@ -1740,7 +1740,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "breast enhancers":
+			case ConsumerDrug.GROW_BREAST:
 				if (PC.boobs >= 50000) {
 					r.push(`Your udders are now so massive that the dermal patches can no longer diffuse the drugs into them effectively. <span class="noteworthy">You stop using them.</span>`);
 					PC.drugs = Drug.NONE;
@@ -1760,7 +1760,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "butt enhancers":
+			case ConsumerDrug.GROW_BUTT:
 				if (PC.butt >= 20) {
 					r.push(`You've expanded your ass to such a freakishly monstrous size that the patches can no longer diffuse the drugs into them effectively. <span class="noteworthy">You stop using them.</span>`);
 					PC.butt = Math.clamp(PC.butt, 0, 20);
@@ -1775,7 +1775,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "lip enhancers":
+			case ConsumerDrug.GROW_LIP:
 				if ((PC.lips >= 100) || (PC.lips > 85 && V.seeExtreme !== 1)) {
 					r.push(`Your lips are now so enormous that the patches can no longer diffuse the drugs into them effectively. <span class="noteworthy">You stop using them.</span>`);
 					PC.drugs = Drug.NONE;
@@ -1797,8 +1797,8 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "penis enlargers":
-			case "clitoris enlargers":
+			case ConsumerDrug.GROW_PENIS:
+			case ConsumerDrug.GROW_CLIT:
 				if (PC.dick >= 30) {
 					r.push(`Your cock is so massive that the patches can no longer diffuse the drugs into it to a degree needed for further growth. <span class="noteworthy">You stop using them.</span>`);
 					PC.drugs = Drug.NONE;
@@ -1826,7 +1826,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					r.push(`Your balls are now so immense that any further growth will be negligible. However, staying on the drugs will still stimulate cum overproduction.`);
 				}
 				break;
-			case "testicle enlargers":
+			case ConsumerDrug.GROW_TESTICLE:
 				if (PC.balls >= 125) {
 					r.push(`Your balls have ballooned to such an obscene size that the patches can no longer diffuse the drugs into them to a degree needed for further growth. <span class="noteworthy">You stop using them.</span>`);
 					PC.drugs = Drug.NONE;
@@ -1862,7 +1862,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "penis reducers":
+			case ConsumerDrug.REDUCE_PENIS:
 				if (PC.dick === 1) {
 					r.push(`Your penis is now so minuscule that there is nothing left that the drugs can further reduce; <span class="noteworthy">you stop taking them.</span>`);
 					PC.drugs = Drug.NONE;
@@ -1871,7 +1871,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "testicle reducers":
+			case ConsumerDrug.REDUCE_TESTICLE:
 			case Drug.ATROPHYTESTICLE:
 				if (PC.balls === 1) {
 					r.push(`Your balls are now so insignificant that the drugs will have no further effect; <span class="noteworthy">you stop taking them.</span>`);
@@ -1890,14 +1890,14 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "lip reducers":
+			case ConsumerDrug.REDUCE_LIP:
 			case Drug.ATROPHYLIP:
 				if (lipSize === 0) {
 					r.push(`Your ${PC.lipsImplant > 0 ? "natural " : ""}lips are now so thin that further drug use will fail to shrink them further; <span class="noteworthy">you stop taking them.</span>`);
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "breast reducers":
+			case ConsumerDrug.REDUCE_BREAST:
 				if (boobSize <= 100) {
 					r.push(`You are now so flat that you lack any breast tissue for the drugs to move; <span class="noteworthy">you stop taking them.</span>`);
 					PC.drugs = Drug.NONE;
@@ -1912,7 +1912,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "butt reducers":
+			case ConsumerDrug.REDUCE_BUTT:
 				if (buttSize <= 0) {
 					r.push(`Your ass is now so flat that the drugs will have no further effect on you; <span class="noteworthy">you stop taking them.</span>`);
 					PC.drugs = Drug.NONE;
@@ -1927,7 +1927,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 					PC.drugs = Drug.NONE;
 				}
 				break;
-			case "hip wideners":
+			case ConsumerDrug.GROW_HIP:
 				if (PC.hips > -2) {
 					r.push(`Your body has become better suited for childbirth; <span class="noteworthy">you stop taking the hormones.</span>`);
 					PC.drugs = Drug.NONE;
diff --git a/src/endWeek/player/prHealth.js b/src/endWeek/player/prHealth.js
index 0f0b0569119..909628ed8e9 100644
--- a/src/endWeek/player/prHealth.js
+++ b/src/endWeek/player/prHealth.js
@@ -307,7 +307,7 @@ App.EndWeek.Player.health = function(PC = V.PC) {
 			} else if (PC.addict < 2) {
 				r.push(`You've finally <span class="cyan">kicked your aphrodisiac addiction.</span>`);
 				PC.addict = 0;
-			} else if (PC.drugs === "detox pills") {
+			} else if (PC.drugs === ConsumerDrug.DETOX) {
 				r.push(`The aphrodisiac substitute helps keep the cravings in check while slowly weaning you off the real drug.`);
 				PC.addict -= 1;
 			} else if (V.aphrodisiacUpgrade === 1 && !canEatFood(PC)) {
diff --git a/src/endWeek/player/prLongTermPhysicalEffects.js b/src/endWeek/player/prLongTermPhysicalEffects.js
index 179ecb182a4..580009ebe18 100644
--- a/src/endWeek/player/prLongTermPhysicalEffects.js
+++ b/src/endWeek/player/prLongTermPhysicalEffects.js
@@ -1003,7 +1003,7 @@ App.EndWeek.Player.longTermPhysicalEffects = function(PC = V.PC) {
 		}
 		if (boobSize > triggerSize) {
 			if (V.arcologies[0].FSAssetExpansionistResearch === 0) {
-				if (![Drug.GROWBREAST, Drug.INTENSIVEBREAST, Drug.HYPERBREAST, "breast enhancers"].includes(PC.drugs)) {
+				if (![Drug.GROWBREAST, Drug.INTENSIVEBREAST, Drug.HYPERBREAST, ConsumerDrug.GROW_BREAST].includes(PC.drugs)) {
 					if (PC.bellyPreg < 300000 && PC.hormoneBalance < 300 && gigantomastiaMod !== 3) {
 						if (boobSize < triggerSize * 2) {
 							r.push(`Your breasts are larger than your body can possibly sustain without pharmaceutical intervention, and they <span class="change negative">naturally lose mass.</span>`);
diff --git a/src/endWeek/player/prPregnancy.js b/src/endWeek/player/prPregnancy.js
index d4f95a63e08..a02026bf199 100644
--- a/src/endWeek/player/prPregnancy.js
+++ b/src/endWeek/player/prPregnancy.js
@@ -372,7 +372,7 @@ App.EndWeek.Player.pregnancy = function(PC = V.PC) {
 			} else if (PC.preg > PC.pregData.normalBirth / 1.42 && PC.physicalAge >= 16 && PC.hips === 0 && PC.hipsImplant === 0 && random(1, 100) > 70 / uterineHypersensitivityMod) {
 				r.push(`Your hips <span class="change positive">widen</span> to better support your gravidity.`);
 				PC.hips += 1;
-			} else if (PC.drugs === "hip wideners" && PC.preg > PC.pregData.normalBirth / 1.42 && PC.hips === -2 && PC.hipsImplant === 0 && random(1, 100) > 70 / uterineHypersensitivityMod) {
+			} else if (PC.drugs === ConsumerDrug.GROW_HIP && PC.preg > PC.pregData.normalBirth / 1.42 && PC.hips === -2 && PC.hipsImplant === 0 && random(1, 100) > 70 / uterineHypersensitivityMod) {
 				r.push(`Your hips <span class="change positive">widen</span> to better support your gravidity.`);
 				PC.hips += 1;
 			}
diff --git a/src/events/RESS/breedingBull.js b/src/events/RESS/breedingBull.js
index 45c20ca19b4..48e0db88e1e 100644
--- a/src/events/RESS/breedingBull.js
+++ b/src/events/RESS/breedingBull.js
@@ -24,7 +24,7 @@ App.Events.RESSBreedingBull = class RESSBreedingBull extends App.Events.BaseEven
 
 	get weight() {
 		let weight = 1;
-		if (V.PC.drugs === "fertility supplements" || V.PC.diet === "fertility") {
+		if (V.PC.drugs === ConsumerDrug.ENHANCE_FERTILITY || V.PC.diet === "fertility") {
 			weight += 2;
 		}
 		if (V.PC.forcedFertDrugs > 0) {
diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index d031d0f3960..faac91ef72e 100644
--- a/src/js/economyJS.js
+++ b/src/js/economyJS.js
@@ -917,40 +917,40 @@ globalThis.calculateCosts = (function() {
 		let costs = 0;
 
 		switch (V.PC.drugs) {
-			case 'anti-aging cream':
+			case Drug.ANTIAGE:
 				costs += Math.trunc(drugsCost * 10);
 				break;
-			case 'female hormone injections':
-			case 'male hormone injections':
-			case 'intensive breast injections':
-			case 'intensive butt injections':
-			case 'intensive penis enhancement':
-			case 'intensive clitoris enhancement':
-			case 'intensive testicle enhancement':
-			case 'hyper breast injections':
-			case 'hyper butt injections':
-			case 'hyper penis enhancement':
-			case 'hyper testicle enhancement':
-			case 'growth stimulants':
-			case 'psychostimulants':
+			case Drug.HORMONEFEMALE:
+			case Drug.HORMONEMALE:
+			case Drug.INTENSIVEBREAST:
+			case Drug.INTENSIVEBUTT:
+			case Drug.INTENSIVEPENIS:
+			case Drug.INTENSIVECLIT:
+			case Drug.INTENSIVETESTICLE:
+			case Drug.HYPERBREAST:
+			case Drug.HYPERBUTT:
+			case Drug.HYPERPENIS:
+			case Drug.HYPERTESTICLE:
+			case Drug.GROWTHSTIM:
+			case Drug.PSYCHOSTIM:
 				costs += drugsCost * 5;
 				break;
-			case 'breast enhancers':
-			case 'butt enhancers':
-			case 'lip enhancers':
-			case 'clitoris enlargers':
-			case 'penis enlargers':
-			case 'testicle enlargers':
+			case ConsumerDrug.GROW_BREAST:
+			case ConsumerDrug.GROW_BUTT:
+			case ConsumerDrug.GROW_LIP:
+			case ConsumerDrug.GROW_CLIT:
+			case ConsumerDrug.GROW_PENIS:
+			case ConsumerDrug.GROW_TESTICLE:
 				costs += (V.consumerDrugs ? drugsCost * 2 : drugsCost * 3);
 				break;
-			case 'fertility supplements':
-			case 'stamina enhancers':
+			case ConsumerDrug.ENHANCE_FERTILITY:
+			case ConsumerDrug.ENHANCE_STAMINA:
 				costs += drugsCost;
 				break;
-			case 'sag-B-gone':
+			case Drug.SAGBGONE:
 				costs += Math.trunc(drugsCost * 0.1);
 				break;
-			case 'no drugs':
+			case Drug.NONE:
 				break;
 			default:
 				costs += Math.trunc(drugsCost * 2);
diff --git a/src/js/pregJS.js b/src/js/pregJS.js
index 73daf4d8df2..c301c95bcda 100644
--- a/src/js/pregJS.js
+++ b/src/js/pregJS.js
@@ -1,4 +1,9 @@
 /* Major props to the anons who worked together to forge the Super Pregnancy Project. Let your legacy go unforgotten.*/
+
+/**
+ * @param {FC.HumanState} s
+ * @returns {number}
+ */
 globalThis.getPregBellySize = function(s) {
 	let targetLen;
 	let gestationWeek = s.preg;
@@ -285,7 +290,7 @@ globalThis.setPregType = function(actor) {
 					fertilityStack++;
 					fertilityStack++;
 					fertilityStack++;
-				} else if (actor.drugs === "fertility supplements") {
+				} else if (actor.drugs === ConsumerDrug.ENHANCE_FERTILITY) {
 					ovum += jsEither([0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2]);
 					fertilityStack++;
 				} else if (actor.drugs === "fertility drugs") {
diff --git a/src/js/states/HumanState.js b/src/js/states/HumanState.js
index b1e059dfae7..9d20d56fe4c 100644
--- a/src/js/states/HumanState.js
+++ b/src/js/states/HumanState.js
@@ -1713,44 +1713,6 @@ App.Entity.HumanState = class HumanState {
 		 * * 2: heavy female hormones
 		 */
 		this.hormones = 0;
-		/**
-		 * * "no drugs"
-		 * * "breast injections"
-		 * * "butt injections"
-		 * * "clitoris enhancement"
-		 * * "lip injections"
-		 * * "fertility drugs"
-		 * * "penis enhancement"
-		 * * "testicle enhancement"
-		 * * "psychosuppressants"
-		 * * "psychostimulants"
-		 * * "steroids"
-		 * * "hormone enhancers"
-		 * * "hormone blockers"
-		 * * "super fertility drugs"
-		 * * "intensive clitoris enhancement"
-		 * * "hyper breast injections"
-		 * * "hyper butt injections"
-		 * * "hyper penis enhancement"
-		 * * "hyper testicle enhancement"
-		 * * "female hormone injections"
-		 * * "male hormone injections"
-		 * * "anti-aging cream"
-		 * * "appetite suppressors"
-		 * * "penis atrophiers"
-		 * * "testicle atrophiers"
-		 * * "clitoris atrophiers"
-		 * * "labia atrophiers"
-		 * * "nipple atrophiers"
-		 * * "lip atrophiers"
-		 * * "breast redistributors"
-		 * * "butt redistributors"
-		 * * "sag-B-gone"
-		 * * "growth stimulants"
-		 * * "stimulants" (planned)
-		 * @type {FC.Drug}
-		 */
-		this.drugs = "no drugs";
 		/**
 		 * * 0: none
 		 * * 1: preventatives
diff --git a/src/js/states/PlayerState.js b/src/js/states/PlayerState.js
index d89db080589..b39e2f6998d 100644
--- a/src/js/states/PlayerState.js
+++ b/src/js/states/PlayerState.js
@@ -117,6 +117,10 @@ App.Entity.PlayerSkillsState = class PlayerSkillsState extends App.Entity.HumanS
 App.Entity.PlayerState = class extends App.Entity.HumanState {
 	constructor() {
 		super();
+		/**
+		 * @type {FC.PCDrug}
+		 */
+		this.drugs = "no drugs";
 		// // // // // // properties unique to the player \\ \\ \\ \\ \\ \\
 
 		/** your title's gender
diff --git a/src/js/states/SlaveState.js b/src/js/states/SlaveState.js
index a3bfb125c1a..f8edfdf4167 100644
--- a/src/js/states/SlaveState.js
+++ b/src/js/states/SlaveState.js
@@ -188,6 +188,44 @@ App.Entity.SlaveSkillsState = class SlaveSkillsState extends App.Entity.HumanSki
 App.Entity.SlaveState = class extends App.Entity.HumanState {
 	constructor() {
 		super();
+		/**
+		 * * "no drugs"
+		 * * "breast injections"
+		 * * "butt injections"
+		 * * "clitoris enhancement"
+		 * * "lip injections"
+		 * * "fertility drugs"
+		 * * "penis enhancement"
+		 * * "testicle enhancement"
+		 * * "psychosuppressants"
+		 * * "psychostimulants"
+		 * * "steroids"
+		 * * "hormone enhancers"
+		 * * "hormone blockers"
+		 * * "super fertility drugs"
+		 * * "intensive clitoris enhancement"
+		 * * "hyper breast injections"
+		 * * "hyper butt injections"
+		 * * "hyper penis enhancement"
+		 * * "hyper testicle enhancement"
+		 * * "female hormone injections"
+		 * * "male hormone injections"
+		 * * "anti-aging cream"
+		 * * "appetite suppressors"
+		 * * "penis atrophiers"
+		 * * "testicle atrophiers"
+		 * * "clitoris atrophiers"
+		 * * "labia atrophiers"
+		 * * "nipple atrophiers"
+		 * * "lip atrophiers"
+		 * * "breast redistributors"
+		 * * "butt redistributors"
+		 * * "sag-B-gone"
+		 * * "growth stimulants"
+		 * * "stimulants" (planned)
+		 * @type {FC.Drug}
+		 */
+		this.drugs = "no drugs";
 		/** game week slave was acquired.
 		 *
 		 * _0: Obtained prior to game start / at game start_ */
diff --git a/src/player/doctorConsultation.js b/src/player/doctorConsultation.js
index 1442740ff5a..351e55def61 100644
--- a/src/player/doctorConsultation.js
+++ b/src/player/doctorConsultation.js
@@ -293,79 +293,68 @@ App.UI.doctorConsultation = function() {
 			const text = [];
 			const links = [];
 
-			if (V.PC.drugs === "no drugs") {
+			/**
+			 * @param {FC.ConsumerDrug} drug
+			 */
+			const addApplyDrugLink = (drug) => {
+				links.push(App.UI.DOM.link(capFirstChar(drug), () => {
+					V.PC.drugs = drug;
+					App.UI.DOM.replace(drugsDiv, drugs);
+				}));
+			};
+
+			if (V.PC.drugs === Drug.NONE) {
 				playerDrugsDiv.append(`You are not using any pharmaceutical drugs. Start taking: `);
 			} else {
 				playerDrugsDiv.append(`You are planning on taking ${V.PC.drugs}. Instead take: `);
 			}
 
-			if (V.PC.drugs !== "breast enhancers") {
+			if (V.PC.drugs !== ConsumerDrug.GROW_BREAST) {
 				if (V.PC.boobs < 10000) {
-					links.push(App.UI.DOM.link(`Breast enhancers`, () => {
-						V.PC.drugs = "breast enhancers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+					addApplyDrugLink(ConsumerDrug.GROW_BREAST);
 				} else {
 					links.push(App.UI.DOM.disabledLink(`Breast enhancers`, [
 						`"Surely your back is already hurting? I can't advise going any larger, not that the patches would be effective anyway."`,
 					]));
 				}
 			}
-			if (V.PC.drugs !== "breast reducers") {
+			if (V.PC.drugs !== ConsumerDrug.REDUCE_BREAST) {
 				if (App.Medicine.fleshSize(V.PC, 'boobs') >= 800) {
-					links.push(App.UI.DOM.link(`Breast reducers`, () => {
-						V.PC.drugs = "breast reducers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+					addApplyDrugLink(ConsumerDrug.REDUCE_BREAST);
 				}
 			}
-			if (V.PC.drugs !== "butt enhancers") {
+			if (V.PC.drugs !== ConsumerDrug.GROW_BUTT) {
 				if (V.PC.butt < 8) {
-					links.push(App.UI.DOM.link(`Butt enhancers`, () => {
-						V.PC.drugs = "butt enhancers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+					addApplyDrugLink(ConsumerDrug.GROW_BUTT);
 				} else {
 					links.push(App.UI.DOM.disabledLink(`Butt enhancers`, [
 						`"Isn't it getting a bit hard for you to move? I can't advise going any larger, not that the patches would be effective anyway."`,
 					]));
 				}
 			}
-			if (V.PC.drugs !== "butt reducers") {
+			if (V.PC.drugs !== ConsumerDrug.REDUCE_BUTT) {
 				if (V.PC.butt - V.PC.buttImplant >= 8) {
-					links.push(App.UI.DOM.link(`Butt reducers`, () => {
-						V.PC.drugs = "butt reducers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+					addApplyDrugLink(ConsumerDrug.REDUCE_BUTT);
 				}
 			}
-			if (V.PC.drugs !== "lip enhancers") {
+			if (V.PC.drugs !== ConsumerDrug.GROW_LIP) {
 				if (V.PC.lips <= 85) {
-					links.push(App.UI.DOM.link(`Lip enhancers`, () => {
-						V.PC.drugs = "lip enhancers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+					addApplyDrugLink(ConsumerDrug.GROW_LIP);
 				} else {
 					links.push(App.UI.DOM.disabledLink(`Lip enhancers`, [
 						`"I can hear how difficult it is for you to form words with those lips. I'm not going to be the one that costs you the ability to talk."`,
 					]));
 				}
 			}
-			if (V.PC.drugs !== "lip reducers") {
-				if (V.PC.lips - V.PC.lipsImplant > 85) {
-					links.push(App.UI.DOM.link(`Lip reducers`, () => {
-						V.PC.drugs = "lip reducers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+			if (V.PC.drugs !== ConsumerDrug.REDUCE_LIP) {
+				if (App.Medicine.fleshSize(V.PC, 'lips') > 5) {
+					addApplyDrugLink(ConsumerDrug.REDUCE_LIP);
 				}
 			}
-			if (V.PC.drugs !== "penis enlargers") {
+			if (V.PC.drugs !== ConsumerDrug.GROW_PENIS) {
 				if (V.PC.dick > 0) {
 					if (V.PC.dick < 6) {
-						links.push(App.UI.DOM.link(`Penis enlargers`, () => {
-							V.PC.drugs = "penis enlargers";
-							App.UI.DOM.replace(drugsDiv, drugs);
-						}));
+						addApplyDrugLink(ConsumerDrug.GROW_PENIS);
 					} else {
 						links.push(App.UI.DOM.disabledLink(`Penis enlargers`, [
 							`"The lightheadedness you feel when you get aroused is mostly due to your current size, so getting larger will only make things worse."`,
@@ -373,21 +362,15 @@ App.UI.doctorConsultation = function() {
 					}
 				}
 			}
-			if (V.PC.drugs !== "penis reducers") {
+			if (V.PC.drugs !== ConsumerDrug.REDUCE_PENIS) {
 				if (V.PC.dick >= 6) {
-					links.push(App.UI.DOM.link(`Penis reducers`, () => {
-						V.PC.drugs = "penis reducers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+					addApplyDrugLink(ConsumerDrug.REDUCE_PENIS);
 				}
 			}
-			if (V.PC.drugs !== "testicle enlargers") {
+			if (V.PC.drugs !== ConsumerDrug.GROW_TESTICLE) {
 				if (V.PC.balls > 0 && V.PC.scrotum > 0) {
 					if (V.PC.balls < 30) {
-						links.push(App.UI.DOM.link(`Testicle enlargers`, () => {
-							V.PC.drugs = "testicle enlargers";
-							App.UI.DOM.replace(drugsDiv, drugs);
-						}));
+						addApplyDrugLink(ConsumerDrug.GROW_TESTICLE);
 					} else {
 						links.push(App.UI.DOM.disabledLink(`Testicle enlargers`, [
 							`I could diagnose you with elephantiasis and nobody would bat an eye over it. Really though, nothing I can say would help the patches actually work on you at that size.`,
@@ -395,40 +378,28 @@ App.UI.doctorConsultation = function() {
 					}
 				}
 			}
-			if (V.PC.drugs !== "testicle reducers") {
+			if (V.PC.drugs !== ConsumerDrug.REDUCE_TESTICLE) {
 				if (V.PC.balls >= 6) {
-					links.push(App.UI.DOM.link(`Testicle reducers`, () => {
-						V.PC.drugs = "testicle reducers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+					addApplyDrugLink(ConsumerDrug.REDUCE_TESTICLE);
 				}
 			}
-			if (V.PC.drugs !== "fertility supplements") {
+			if (V.PC.drugs !== ConsumerDrug.ENHANCE_FERTILITY) {
 				if (V.PC.ovaries === 1 || V.PC.mpreg === 1) {
-					links.push(App.UI.DOM.link(`Fertility supplements`, () => {
-						V.PC.drugs = "fertility supplements";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+					addApplyDrugLink(ConsumerDrug.ENHANCE_FERTILITY);
 				} else {
 					links.push(App.UI.DOM.disabledLink(`Fertility supplements`, [
 						`It would be a waste of drugs to give these to someone that doesn't even have the organs needed to produce eggs.`,
 					]));
 				}
 			}
-			if (V.PC.drugs !== "hip wideners") {
+			if (V.PC.drugs !== ConsumerDrug.GROW_HIP) {
 				if (V.PC.preg > V.PC.pregData.normalBirth / 1.42 && V.PC.hips === -2 && V.PC.hipsImplant === 0) {
-					links.push(App.UI.DOM.link(`Hip wideners`, () => {
-						V.PC.drugs = "hip wideners";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+					addApplyDrugLink(ConsumerDrug.GROW_HIP);
 				}
 			}
-			if (V.PC.drugs !== "detox pills") {
+			if (V.PC.drugs !==  ConsumerDrug.DETOX) {
 				if (V.PC.addict > 3) {
-					links.push(App.UI.DOM.link(`Detox pills`, () => {
-						V.PC.drugs = "detox pills";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+					addApplyDrugLink(ConsumerDrug.DETOX);
 				}
 			}
 
diff --git a/src/player/managePersonalAffairs.js b/src/player/managePersonalAffairs.js
index dc158910a5b..5a788f687f5 100644
--- a/src/player/managePersonalAffairs.js
+++ b/src/player/managePersonalAffairs.js
@@ -1028,7 +1028,7 @@ App.UI.managePersonalAffairs = function() {
 					V.PC.drugs = "no drugs";
 					App.UI.DOM.replace(drugsDiv, drugs);
 				}));
-				if ((["breast enhancers", "breast reducers", "butt enhancers", "butt reducers", "lip enhancers", "lip reducers", "penis enlargers", "penis reducers", "testicle enlargers", "testicle reducers", "fertility supplements"].includes(PC.drugs) && V.consumerDrugs === 0) || (["hip wideners", "detox pills"].includes(PC.drugs))) {
+				if ((V.consumerDrugs === 0 && Object.values(ConsumerDrug).includes(PC.drugs)) || ([ConsumerDrug.GROW_HIP, ConsumerDrug.DETOX].includes(PC.drugs))) {
 					App.UI.DOM.appendNewElement("div", playerDrugsDiv, `You will need to visit your doctor to start a new prescription.`, ["indent", "note"]);
 				}
 			} else {
@@ -1052,87 +1052,76 @@ App.UI.managePersonalAffairs = function() {
 				const text = [];
 				const links = [];
 
+				/**
+				 * @param {FC.PCDrug} drug
+				 */
+				const addApplyDrugLink = (drug) => {
+					links.push(App.UI.DOM.link(capFirstChar(drug), () => {
+						PC.drugs = drug;
+						App.UI.DOM.replace(drugsDiv, drugs);
+					}));
+				};
+
 				if (V.consumerDrugs === 1) {
-					if (PC.drugs !== "breast enhancers") {
+					if (PC.drugs !== ConsumerDrug.GROW_BREAST) {
 						if (PC.boobs < 50000) {
-							links.push(App.UI.DOM.link(`Breast enhancers`, () => {
-								PC.drugs = "breast enhancers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(ConsumerDrug.GROW_BREAST);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Breast enhancers`, [
 								`Breasts are too big for the patches to work`,
 							]));
 						}
 					}
-					if (PC.drugs !== "breast reducers") {
+					if (PC.drugs !== ConsumerDrug.REDUCE_BREAST) {
 						if (App.Medicine.fleshSize(PC, 'boobs') > 100) {
-							links.push(App.UI.DOM.link(`Breast reducers`, () => {
-								PC.drugs = "breast reducers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(ConsumerDrug.REDUCE_BREAST);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Breast reducers`, [
 								`Already flat enough`,
 							]));
 						}
 					}
-					if (PC.drugs !== "butt enhancers") {
+					if (PC.drugs !== ConsumerDrug.GROW_BUTT) {
 						if (PC.butt < 20) {
-							links.push(App.UI.DOM.link(`Butt enhancers`, () => {
-								PC.drugs = "butt enhancers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(ConsumerDrug.GROW_BUTT);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Butt enhancers`, [
 								`Butt is too large for the patches to work`,
 							]));
 						}
 					}
-					if (PC.drugs !== "butt reducers") {
+					if (PC.drugs !== ConsumerDrug.REDUCE_BUTT) {
 						if (PC.butt - PC.buttImplant > 0) {
-							links.push(App.UI.DOM.link(`Butt reducers`, () => {
-								PC.drugs = "butt reducers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(ConsumerDrug.REDUCE_BUTT);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Butt reducers`, [
 								`No ass left to lose`,
 							]));
 						}
 					}
-					if (PC.drugs !== "lip enhancers") {
+					if (PC.drugs !== ConsumerDrug.GROW_LIP) {
 						if (PC.lips < 100 || (PC.lips <= 85 && V.seeExtreme !== 1)) {
-							links.push(App.UI.DOM.link(`Lip enhancers`, () => {
-								PC.drugs = "lip enhancers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(ConsumerDrug.GROW_LIP);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Lip enhancers`, [
 								`Lips cannot grow larger`,
 							]));
 						}
 					}
-					if (PC.drugs !== "lip reducers") {
+					if (PC.drugs !== ConsumerDrug.REDUCE_LIP) {
 						if (PC.lips - PC.lipsImplant > 0) {
-							links.push(App.UI.DOM.link(`Lip reducers`, () => {
-								PC.drugs = "lip reducers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(ConsumerDrug.REDUCE_LIP);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Lip reducers`, [
 								`No lip left to give`,
 							]));
 						}
 					}
-					if (PC.drugs !== "penis enlargers") {
+					if (PC.drugs !== ConsumerDrug.GROW_PENIS) {
 						if (PC.dick > 0 || PC.vagina >= 0) {
 							if (PC.dick > 0) {
 								if (PC.dick < 30) {
-									links.push(App.UI.DOM.link(`Penis enlargers`, () => {
-										PC.drugs = "penis enlargers";
-										App.UI.DOM.replace(drugsDiv, drugs);
-									}));
+									addApplyDrugLink(ConsumerDrug.GROW_PENIS);
 								} else {
 									links.push(App.UI.DOM.disabledLink(`Penis enlargers`, [
 										`Penis is too large for the patches to work`,
@@ -1140,10 +1129,7 @@ App.UI.managePersonalAffairs = function() {
 								}
 							} else {
 								if (PC.clit < 5) {
-									links.push(App.UI.DOM.link(`Clit enlargers`, () => {
-										PC.drugs = "clitoris enlargers";
-										App.UI.DOM.replace(drugsDiv, drugs);
-									}));
+									addApplyDrugLink(ConsumerDrug.GROW_CLIT);
 								} else {
 									links.push(App.UI.DOM.disabledLink(`Clit enlargers`, [
 										`Clit can't get any bigger`,
@@ -1152,13 +1138,10 @@ App.UI.managePersonalAffairs = function() {
 							}
 						}
 					}
-					if (PC.drugs !== "penis reducers") {
+					if (PC.drugs !== ConsumerDrug.REDUCE_PENIS) {
 						if (PC.dick > 0) {
 							if (PC.dick > 1) {
-								links.push(App.UI.DOM.link(`Penis reducers`, () => {
-									PC.drugs = "penis reducers";
-									App.UI.DOM.replace(drugsDiv, drugs);
-								}));
+								addApplyDrugLink(ConsumerDrug.REDUCE_PENIS);
 							} else {
 								links.push(App.UI.DOM.disabledLink(`Penis reducers`, [
 									`Dick cannot possibly get smaller`,
@@ -1166,10 +1149,7 @@ App.UI.managePersonalAffairs = function() {
 							}
 						} else if (PC.vagina >= 0) {
 							if (PC.clit > 0) {
-								links.push(App.UI.DOM.link(`Clit reducers`, () => {
-									PC.drugs = "penis reducers";
-									App.UI.DOM.replace(drugsDiv, drugs);
-								}));
+								addApplyDrugLink(ConsumerDrug.REDUCE_CLIT);
 							} else {
 								links.push(App.UI.DOM.disabledLink(`Clit reducers`, [
 									`Clit cannot possibly get smaller`,
@@ -1177,13 +1157,10 @@ App.UI.managePersonalAffairs = function() {
 							}
 						}
 					}
-					if (PC.drugs !== "testicle enlargers") {
+					if (PC.drugs !== ConsumerDrug.GROW_TESTICLE) {
 						if (PC.balls > 0 && PC.scrotum > 0) {
 							if (PC.balls < 125) {
-								links.push(App.UI.DOM.link(`Testicle enlargers`, () => {
-									PC.drugs = "testicle enlargers";
-									App.UI.DOM.replace(drugsDiv, drugs);
-								}));
+								addApplyDrugLink(ConsumerDrug.GROW_TESTICLE);
 							} else {
 								links.push(App.UI.DOM.disabledLink(`Testicle enlargers`, [
 									`Balls are too large for the patches to work`,
@@ -1191,13 +1168,10 @@ App.UI.managePersonalAffairs = function() {
 							}
 						}
 					}
-					if (PC.drugs !== "testicle reducers") {
+					if (PC.drugs !== ConsumerDrug.REDUCE_TESTICLE) {
 						if (PC.balls > 0 && PC.scrotum > 0) {
 							if (PC.balls > 1) {
-								links.push(App.UI.DOM.link(`Testicle reducers`, () => {
-									PC.drugs = "testicle reducers";
-									App.UI.DOM.replace(drugsDiv, drugs);
-								}));
+								addApplyDrugLink(ConsumerDrug.REDUCE_TESTICLE);
 							} else {
 								links.push(App.UI.DOM.disabledLink(`Testicle reducers`, [
 									`Balls cannot possibly get smaller`,
@@ -1205,25 +1179,16 @@ App.UI.managePersonalAffairs = function() {
 							}
 						}
 					}
-					if (PC.drugs !== "fertility supplements") {
-						links.push(App.UI.DOM.link(`Fertility supplements`, () => {
-							PC.drugs = "fertility supplements";
-							App.UI.DOM.replace(drugsDiv, drugs);
-						}));
+					if (PC.drugs !== ConsumerDrug.ENHANCE_FERTILITY) {
+						addApplyDrugLink(ConsumerDrug.ENHANCE_FERTILITY);
 					}
 				}
 
-				if (PC.drugs !== "stamina enhancers") {
-					links.push(App.UI.DOM.link(`Stamina enhancers`, () => {
-						PC.drugs = "stamina enhancers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+				if (PC.drugs !== ConsumerDrug.ENHANCE_STAMINA) {
+					addApplyDrugLink(ConsumerDrug.ENHANCE_STAMINA);
 				}
-				if (PC.drugs !== "appetite suppressors") {
-					links.push(App.UI.DOM.link(`Appetite suppressors`, () => {
-						PC.drugs = "appetite suppressors";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+				if (PC.drugs !== Drug.APPETITESUPP) {
+					addApplyDrugLink(Drug.APPETITESUPP);
 				}
 
 				// Modded consumer grade PC drugs
@@ -1271,13 +1236,21 @@ App.UI.managePersonalAffairs = function() {
 			function slaveDrugs() {
 				const text = [];
 				const links = [];
+
+				/**
+				 * @param {FC.Drug} drug
+				 */
+				const addApplyDrugLink = (drug) => {
+					links.push(App.UI.DOM.link(capFirstChar(drug), () => {
+						PC.drugs = drug;
+						App.UI.DOM.replace(drugsDiv, drugs);
+					}));
+				};
+
 				if (arcology.FSSlaveProfessionalismResearch === 1) {
-					if (PC.drugs !== "psychostimulants") {
+					if (PC.drugs !== Drug.PSYCHOSTIM) {
 						if (canImproveIntelligence(PC)) {
-							links.push(App.UI.DOM.link(`Psychostimulants`, () => {
-								PC.drugs = "psychostimulants";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.PSYCHOSTIM);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Psychostimulants`, [
 								`Cannot improve intelligence further this way`,
@@ -1287,12 +1260,9 @@ App.UI.managePersonalAffairs = function() {
 				}
 
 				if (arcology.FSAssetExpansionistResearch === 1) {
-					if (PC.drugs !== "hyper breast injections") {
+					if (PC.drugs !== Drug.HYPERBREAST) {
 						if (PC.boobs < 50000) {
-							links.push(App.UI.DOM.link(`Hyper breast injections`, () => {
-								PC.drugs = "hyper breast injections";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.HYPERBREAST);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Hyper breast injections`, [
 								`Breasts are too big for the drugs to work`,
@@ -1300,33 +1270,22 @@ App.UI.managePersonalAffairs = function() {
 						}
 					}
 				}
-				if (PC.drugs !== "breast injections" && PC.drugs !== "intensive breast injections") {
-					if (PC.boobs < 50000) {
-						if (PC.drugs !== "breast injections") {
-							links.push(App.UI.DOM.link(`Breast injections`, () => {
-								PC.drugs = "breast injections";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
-						}
-						if (PC.drugs !== "intensive breast injections") {
-							links.push(App.UI.DOM.link(`Intensive breast injections`, () => {
-								PC.drugs = "intensive breast injections";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
-						}
-					} else {
-						links.push(App.UI.DOM.disabledLink(`Breast injections`, [
-							`Breasts are too big for the drugs to work`,
-						]));
+				if (PC.boobs < 50000) {
+					if (PC.drugs !== Drug.GROWBREAST) {
+						addApplyDrugLink(Drug.GROWBREAST);
+					}
+					if (PC.drugs !== Drug.INTENSIVEBREAST) {
+						addApplyDrugLink(Drug.INTENSIVEBREAST);
 					}
+				} else {
+					links.push(App.UI.DOM.disabledLink(`Breast injections`, [
+						`Breasts are too big for the drugs to work`,
+					]));
 				}
 				if (arcology.FSSlimnessEnthusiastResearch === 1) {
-					if (PC.drugs !== "breast redistributors") {
+					if (PC.drugs !== Drug.REDISTBREAST) {
 						if (App.Medicine.fleshSize(PC, 'boobs') > 100) {
-							links.push(App.UI.DOM.link(`Breast redistributors`, () => {
-								PC.drugs = "breast redistributors";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.REDISTBREAST);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Breast redistributors`, [
 								`Already flat enough`,
@@ -1336,12 +1295,9 @@ App.UI.managePersonalAffairs = function() {
 				}
 
 				if (V.dispensary) {
-					if (PC.drugs !== "nipple enhancers") {
+					if (PC.drugs !== Drug.GROWNIPPLE) {
 						if (["inverted", "partially inverted", "cute", "tiny", "puffy", "flat"].includes(PC.nipples)) {
-							links.push(App.UI.DOM.link(`Nipple enhancers`, () => {
-								PC.drugs = "nipple enhancers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.GROWNIPPLE);
 						} else if (PC.nipples === "huge") {
 							links.push(App.UI.DOM.disabledLink(`Nipple enhancers`, [
 								`Nipples cannot get any larger`,
@@ -1354,12 +1310,9 @@ App.UI.managePersonalAffairs = function() {
 					}
 				}
 				if (arcology.FSSlimnessEnthusiastResearch === 1) {
-					if (PC.drugs !== "nipple atrophiers") {
+					if (PC.drugs !== Drug.ATROPHYNIPPLE) {
 						if (PC.nipples === "huge" || PC.nipples === "puffy" || PC.nipples === "cute") {
-							links.push(App.UI.DOM.link(`Nipple atrophiers`, () => {
-								PC.drugs = "nipple atrophiers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.ATROPHYNIPPLE);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Nipple atrophiers`, [
 								`Will not affect your nipples`,
@@ -1369,12 +1322,9 @@ App.UI.managePersonalAffairs = function() {
 				}
 
 				if (arcology.FSAssetExpansionistResearch === 1) {
-					if (PC.drugs !== "hyper butt injections") {
+					if (PC.drugs !== Drug.HYPERBUTT) {
 						if (PC.butt < 20) {
-							links.push(App.UI.DOM.link(`Hyper butt injections`, () => {
-								PC.drugs = "hyper butt injections";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.HYPERBUTT);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Hyper butt injections`, [
 								`Ass cannot grow larger`,
@@ -1382,33 +1332,22 @@ App.UI.managePersonalAffairs = function() {
 						}
 					}
 				}
-				if (PC.drugs !== "butt injections" && PC.drugs !== "intensive butt injections") {
-					if (PC.butt < 9) {
-						if (PC.drugs !== "butt injections") {
-							links.push(App.UI.DOM.link(`Butt injections`, () => {
-								PC.drugs = "butt injections";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
-						}
-						if (PC.drugs !== "intensive butt injections") {
-							links.push(App.UI.DOM.link(`Intensive butt injections`, () => {
-								PC.drugs = "intensive butt injections";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
-						}
-					} else {
-						links.push(App.UI.DOM.disabledLink(`Butt injections`, [
-							`Ass is too big for the drugs to work`,
-						]));
+				if (PC.butt < 9) {
+					if (PC.drugs !== Drug.GROWBUTT) {
+						addApplyDrugLink(Drug.GROWBUTT);
+					}
+					if (PC.drugs !== Drug.INTENSIVEBUTT) {
+						addApplyDrugLink(Drug.INTENSIVEBUTT);
 					}
+				} else {
+					links.push(App.UI.DOM.disabledLink(`Butt injections`, [
+						`Ass is too big for the drugs to work`,
+					]));
 				}
 				if (arcology.FSSlimnessEnthusiastResearch === 1) {
-					if (PC.drugs !== "butt redistributors") {
+					if (PC.drugs !== Drug.REDISTBUTT) {
 						if (PC.butt - PC.buttImplant > 0) {
-							links.push(App.UI.DOM.link(`Butt redistributors`, () => {
-								PC.drugs = "butt redistributors";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.REDISTBUTT);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Butt redistributors`, [
 								`No ass left to lose`,
@@ -1418,12 +1357,9 @@ App.UI.managePersonalAffairs = function() {
 				}
 
 				if (V.dispensary) {
-					if (PC.drugs !== "lip injections") {
+					if (PC.drugs !== Drug.GROWLIP) {
 						if (PC.lips <= 95 || (PC.lips <= 85 && V.seeExtreme !== 1)) {
-							links.push(App.UI.DOM.link(`lip injections`, () => {
-								PC.drugs = "lip injections";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.GROWLIP);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`lip injections`, [
 								`Lips cannot grow larger`,
@@ -1432,12 +1368,9 @@ App.UI.managePersonalAffairs = function() {
 					}
 				}
 				if (arcology.FSSlimnessEnthusiastResearch === 1) {
-					if (PC.drugs !== "lip atrophiers") {
+					if (PC.drugs !== Drug.ATROPHYLIP) {
 						if (PC.lips - PC.lipsImplant > 0) {
-							links.push(App.UI.DOM.link(`Lip atrophiers`, () => {
-								PC.drugs = "lip atrophiers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.ATROPHYLIP);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Lip atrophiers`, [
 								`No lip left to give`,
@@ -1447,13 +1380,10 @@ App.UI.managePersonalAffairs = function() {
 				}
 
 				if (arcology.FSAssetExpansionistResearch === 1) {
-					if (PC.drugs !== "hyper penis enhancement") {
+					if (PC.drugs !== Drug.HYPERPENIS) {
 						if (PC.dick > 0) {
 							if (PC.dick < 30) {
-								links.push(App.UI.DOM.link(`Hyper penis enhancement`, () => {
-									PC.drugs = "hyper penis enhancement";
-									App.UI.DOM.replace(drugsDiv, drugs);
-								}));
+								addApplyDrugLink(Drug.HYPERPENIS);
 							} else {
 								links.push(App.UI.DOM.disabledLink(`Hyper penis enhancement`, [
 									`Dick cannot grow larger`,
@@ -1473,54 +1403,37 @@ App.UI.managePersonalAffairs = function() {
 						} */
 					}
 				}
-				if (PC.drugs !== "penis enhancement" && PC.drugs !== "intensive penis enhancement") {
-					if (PC.dick > 0) {
-						if (PC.dick < 10) {
-							if (PC.drugs !== "penis enhancement") {
-								links.push(App.UI.DOM.link(`Penis enhancement`, () => {
-									PC.drugs = "penis enhancement";
-									App.UI.DOM.replace(drugsDiv, drugs);
-								}));
-							}
-							if (PC.drugs !== "intensive penis enhancement") {
-								links.push(App.UI.DOM.link(`Intensive penis enhancement`, () => {
-									PC.drugs = "intensive penis enhancement";
-									App.UI.DOM.replace(drugsDiv, drugs);
-								}));
-							}
-						} else {
-							links.push(App.UI.DOM.disabledLink(`Penis enhancement`, [
-								`Dick is too big for the drugs to work`,
-							]));
+				if (PC.dick > 0) {
+					if (PC.dick < 10) {
+						if (PC.drugs !== Drug.GROWPENIS) {
+							addApplyDrugLink(Drug.GROWPENIS);
+						}
+						if (PC.drugs !== Drug.INTENSIVEPENIS) {
+							addApplyDrugLink(Drug.INTENSIVEPENIS);
 						}
 					} else {
-						if (PC.clit < 5) {
-							if (PC.drugs !== "clitoris enhancement") {
-								links.push(App.UI.DOM.link(`Clitoris enhancement`, () => {
-									PC.drugs = "clitoris enhancement";
-									App.UI.DOM.replace(drugsDiv, drugs);
-								}));
-							}
-							if (PC.drugs !== "intensive clitoris enhancement") {
-								links.push(App.UI.DOM.link(`Intensive clitoris enhancement`, () => {
-									PC.drugs = "intensive clitoris enhancement";
-									App.UI.DOM.replace(drugsDiv, drugs);
-								}));
-							}
-						} else {
-							links.push(App.UI.DOM.disabledLink(`Clitoris enhancement`, [
-								`Clit cannot grow larger`,
-							]));
+						links.push(App.UI.DOM.disabledLink(`Penis enhancement`, [
+							`Dick is too big for the drugs to work`,
+						]));
+					}
+				} else {
+					if (PC.clit < 5) {
+						if (PC.drugs !== Drug.GROWCLIT) {
+							addApplyDrugLink(Drug.GROWCLIT);
 						}
+						if (PC.drugs !== Drug.INTENSIVECLIT) {
+							addApplyDrugLink(Drug.INTENSIVECLIT);
+						}
+					} else {
+						links.push(App.UI.DOM.disabledLink(`Clitoris enhancement`, [
+							`Clit cannot grow larger`,
+						]));
 					}
 				}
 				if (arcology.FSSlimnessEnthusiastResearch === 1) {
-					if (PC.drugs !== "penis atrophiers") {
+					if (PC.drugs !== Drug.ATROPHYPENIS) {
 						if (PC.dick > 1) {
-							links.push(App.UI.DOM.link(`Penile atrophiers`, () => {
-								PC.drugs = "penis atrophiers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.ATROPHYPENIS);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Penile atrophiers`, [
 								`Dick cannot possibly get smaller`,
@@ -1529,10 +1442,7 @@ App.UI.managePersonalAffairs = function() {
 					}
 					if (PC.drugs !== "clitoris atrophiers") {
 						if (PC.clit > 0) {
-							links.push(App.UI.DOM.link(`Clitoral atrophiers`, () => {
-								PC.drugs = "clitoris atrophiers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.ATROPHYCLIT);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Clitoral atrophiers`, [
 								`Clit cannot possibly get smaller`,
@@ -1540,99 +1450,65 @@ App.UI.managePersonalAffairs = function() {
 						}
 					}
 				}
-				if (PC.drugs !== "priapism agents") {
+				if (PC.drugs !== Drug.PRIAPISM) {
 					if (PC.dick.isBetween(0, 11) && !canAchieveErection(PC)) {
-						links.push(App.UI.DOM.link(`Priapism agents`, () => {
-							PC.drugs = "priapism agents";
-							App.UI.DOM.replace(drugsDiv, drugs);
-						}));
+						addApplyDrugLink(Drug.PRIAPISM);
 					}
 				}
 
 				if (PC.balls > 0) {
 					if (arcology.FSAssetExpansionistResearch === 1) {
-						if (PC.drugs !== "hyper testicle enhancement") {
-							links.push(App.UI.DOM.link(`Hyper testicle enhancement`, () => {
-								PC.drugs = "hyper testicle enhancement";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+						if (PC.drugs !== Drug.HYPERTESTICLE) {
+							addApplyDrugLink(Drug.HYPERTESTICLE);
 						}
 					}
-					if (PC.drugs !== "testicle enhancement" && PC.drugs !== "intensive testicle enhancement") {
-						links.push(App.UI.DOM.link(`Testicle enhancement`, () => {
-							PC.drugs = "testicle enhancement";
-							App.UI.DOM.replace(drugsDiv, drugs);
-						}));
-						links.push(App.UI.DOM.link(`Intensive testicle enhancement`, () => {
-							PC.drugs = "intensive testicle enhancement";
-							App.UI.DOM.replace(drugsDiv, drugs);
-						}));
+					if (PC.drugs !== Drug.GROWTESTICLE) {
+						addApplyDrugLink(Drug.GROWTESTICLE);
+					}
+					if (PC.drugs !== Drug.INTENSIVETESTICLE) {
+						addApplyDrugLink(Drug.INTENSIVETESTICLE);
 					}
 				}
 
-				if (PC.drugs !== "fertility drugs") {
-					links.push(App.UI.DOM.link(`Fertility drugs`, () => {
-						PC.drugs = "fertility drugs";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+				if (PC.drugs !== Drug.FERTILITY) {
+					addApplyDrugLink(Drug.FERTILITY);
 				}
-				if (PC.drugs !== "super fertility drugs") {
+				if (PC.drugs !== Drug.SUPERFERTILITY) {
 					if (V.seeHyperPreg === 1 && V.superFertilityDrugs === 1) {
-						links.push(App.UI.DOM.link(`Super fertility drugs`, () => {
-							PC.drugs = "super fertility drugs";
-							App.UI.DOM.replace(drugsDiv, drugs);
-						}));
+						addApplyDrugLink(Drug.SUPERFERTILITY);
 					}
 				}
 
 				if (V.precociousPuberty === 1 && V.pubertyHormones === 1) {
 					if (PC.balls > 0 && PC.pubertyXY === 0) {
-						if (PC.drugs !== "male hormone injections") {
-							links.push(App.UI.DOM.link(`XY injections`, () => {
-								PC.drugs = "male hormone injections";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+						if (PC.drugs !== Drug.HORMONEMALE) {
+							addApplyDrugLink(Drug.HORMONEMALE);
 						}
 					}
 					if ((PC.ovaries === 1 || PC.mpreg === 1) && PC.pubertyXX === 0) {
-						if (PC.drugs !== "female hormone injections") {
-							links.push(App.UI.DOM.link(`XX injections`, () => {
-								PC.drugs = "female hormone injections";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+						if (PC.drugs !== Drug.HORMONEFEMALE) {
+							addApplyDrugLink(Drug.HORMONEFEMALE);
 						}
 					}
 				}
-				if (PC.drugs !== "hormone blockers") {
-					links.push(App.UI.DOM.link(`Hormone blockers`, () => {
-						PC.drugs = "hormone blockers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+				if (PC.drugs !== Drug.HORMONEBLOCK) {
+					addApplyDrugLink(Drug.HORMONEBLOCK);
 				}
-				if (PC.drugs !== "hormone enhancers") {
-					links.push(App.UI.DOM.link(`Hormone enhancers`, () => {
-						PC.drugs = "hormone enhancers";
-						App.UI.DOM.replace(drugsDiv, drugs);
-					}));
+				if (PC.drugs !== Drug.HORMONEENHANCE) {
+					addApplyDrugLink(Drug.HORMONEENHANCE);
 				}
 
 				if (arcology.FSSlimnessEnthusiastResearch === 1) {
-					if (PC.drugs !== "labia atrophiers") {
+					if (PC.drugs !== Drug.ATROPHYLABIA) {
 						if (PC.labia > 0) {
-							links.push(App.UI.DOM.link(`Labia atrophiers`, () => {
-								PC.drugs = "labia atrophiers";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.ATROPHYLABIA);
 						}
 					}
 				}
 				if (V.growthStim === 1) {
-					if (PC.drugs !== "growth stimulants") {
+					if (PC.drugs !== Drug.GROWTHSTIM) {
 						if (canImproveHeight(PC)) {
-							links.push(App.UI.DOM.link(`Growth stimulants`, () => {
-								PC.drugs = "growth stimulants";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.GROWTHSTIM);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Growth stimulants`, [
 								`Your body just cannot grow any more`,
@@ -1640,25 +1516,16 @@ App.UI.managePersonalAffairs = function() {
 						}
 					}
 				}
-				links.push(App.UI.DOM.link(`Steroids`, () => {
-					PC.drugs = "steroids";
-					App.UI.DOM.replace(drugsDiv, drugs);
-				}));
+				addApplyDrugLink(Drug.STEROID);
 				if (PC.boobs > 250 && PC.boobShape !== "saggy" && V.purchasedSagBGone === 1) {
-					if (PC.drugs !== "sag-B-gone") {
-						links.push(App.UI.DOM.link(`Sag-B-Gone breast lifting cream`, () => {
-							PC.drugs = "sag-B-gone";
-							App.UI.DOM.replace(drugsDiv, drugs);
-						}));
+					if (PC.drugs !== Drug.SAGBGONE) {
+						addApplyDrugLink(Drug.SAGBGONE);
 					}
 				}
 				if (arcology.FSYouthPreferentialistResearch === 1) {
-					if (PC.drugs !== "anti-aging cream") {
+					if (PC.drugs !== Drug.ANTIAGE) {
 						if (PC.visualAge > 18) {
-							links.push(App.UI.DOM.link(`Anti-aging cream`, () => {
-								PC.drugs = "anti-aging cream";
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(Drug.ANTIAGE);
 						} else {
 							links.push(App.UI.DOM.disabledLink(`Anti-aging cream`, [
 								`Cream alone can only get you so far`,
@@ -1671,10 +1538,7 @@ App.UI.managePersonalAffairs = function() {
 				App.Mods.Drugs.list.filter(drug => drug.isPCDrug && !drug.isConsumerGrade && drug.available(PC)).forEach(drug => {
 					if (PC.drugs !== drug.name) {
 						if (drug.enable(PC) === true) {
-							links.push(App.UI.DOM.link(drug.text, () => {
-								PC.drugs = drug.name;
-								App.UI.DOM.replace(drugsDiv, drugs);
-							}));
+							addApplyDrugLink(drug.name);
 						} else {
 							links.push(App.UI.DOM.disabledLink(drug.text, [drug.enable(PC)]));
 						}
@@ -1686,7 +1550,7 @@ App.UI.managePersonalAffairs = function() {
 				App.Events.addNode(slaveDrugsDiv, text);
 
 				if (canEatFood(PC)) {
-					if ((arcology.FSBodyPuristLaw === 0 && V.healthyDrugsUpgrade === 0) || (["hyper breast injections", "hyper butt injections", "growth stimulants", "hyper penis enhancement", "hyper testicle enhancement", "super fertility drugs"].includes(PC.drugs))) {
+					if ((arcology.FSBodyPuristLaw === 0 && V.healthyDrugsUpgrade === 0) || ([Drug.HYPERBREAST, Drug.HYPERBUTT, Drug.GROWTHSTIM, Drug.HYPERPENIS, Drug.HYPERTESTICLE, Drug.SUPERFERTILITY].includes(PC.drugs))) {
 						App.UI.DOM.appendNewElement("div", slaveDrugsDiv, `Most slave-grade drugs are unhealthy and should be used sparingly.`, ["indent", "note"]);
 					}
 				}
-- 
GitLab