From 131a9ad214b1a03c85579b187b94f0f474200c70 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Wed, 1 Jul 2020 17:23:42 -0400
Subject: [PATCH] simplify requirements structure

---
 js/003-data/policiesData.js | 223 ++++++++++++++++++++----------------
 1 file changed, 123 insertions(+), 100 deletions(-)

diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js
index 14a088c70f1..98294cb2636 100644
--- a/js/003-data/policiesData.js
+++ b/js/003-data/policiesData.js
@@ -16,11 +16,11 @@
  * @property {string} [activatedNote] Note that appears if policy is activated. Please note that unlike the other "activated" categories, "note" is only displayed on deactivated policies. There is no fallback.
  */
 /**
- * @typedef {Object<string, PolicySelector[]>} PolicySelectorGroup
+ * @typedef {object<string, PolicySelector[]>} PolicySelectorGroup
  * Key names represent a piece of the variable. "policies.SMR.basicSMR" will be checked against "V.policies.SMR.basicSMR". "arcologies[0].FSEgyptianRevivalistIncestPolicy" will be checked against "V.arcologies[0].FSEgyptianRevivalistIncestPolicy".
  */
 
-/** @type {Object<string, PolicySelectorGroup>} */
+/** @type {object<string, PolicySelectorGroup>} */
 App.Data.Policies.Selection = {
 	SMR: {
 		"policies.SMR.basicSMR": [
@@ -151,7 +151,7 @@ App.Data.Policies.Selection = {
 			{
 				title: "Basic Beauty Standards",
 				text: "no unattractive slaves may be sold in the slave markets.",
-				requirements: function() { if (V.policies.SMR.beauty.qualitySMR === 0) { return true; } else { return false; } },
+				requirements: function() { return (V.policies.SMR.beauty.qualitySMR === 0); },
 				note: "This will raise the price of slaves"
 			}
 		],
@@ -160,7 +160,7 @@ App.Data.Policies.Selection = {
 			{
 				title: "Quality Beauty Standards",
 				text: "only attractive slaves may be sold in the slave markets.",
-				requirements: function() { if (V.policies.SMR.beauty.basicSMR === 0) { return true; } else { return false; } },
+				requirements: function() { return (V.policies.SMR.beauty.basicSMR === 0); },
 				note: "This will raise the price of slaves"
 			}
 		],
@@ -178,14 +178,14 @@ App.Data.Policies.Selection = {
 				title: "Basic Height Standards (Tall)",
 				text: "tall slaves will be favored in the slave markets and those not quite tall enough will undergo height increasing surgery. This will not preclude the sale of short slaves, just the care of them.",
 				activatedText: "tall slaves are favored in the slave market, short slaves capable of meeting height standards via surgery must undergo it.",
-				requirements: function() { if (V.policies.SMR.height.advancedSMR === 0) { return true; } else { return false; } },
+				requirements: function() { return (V.policies.SMR.height.advancedSMR === 0); },
 				note: "This will raise the price of slaves"
 			},
 			{
 				title: "Basic Height Standards (Short)",
 				text: "short slaves are favored in the slave market, tall slaves capable of meeting height standards via surgery must undergo it.",
 				activatedText: "short slaves will be favored in the slave markets and those just above the cut off will undergo height reducing surgery. This will not preclude the sale of tall slaves, just the care of them.",
-				requirements: function() { if (V.policies.SMR.height.advancedSMR === 0) { return true; } else { return false; } },
+				requirements: function() { return (V.policies.SMR.height.advancedSMR === 0); },
 				enable: -1,
 				note: "This will raise the price of slaves"
 			}
@@ -196,14 +196,26 @@ App.Data.Policies.Selection = {
 				title: "Quality Height Standards (Tall)",
 				text: "only slaves of above average height for their age may be sold in the slave markets.",
 				activatedText: "no slaves of below average height for their age may be sold in the slave markets.",
-				requirements: function() { if (V.policies.SMR.height.basicSMR === 0 && V.arcologies[0].FSPetiteAdmirationSMR === 0 && V.arcologies[0].FSStatuesqueGlorificationSMR === 0) { return true; } else { return false; } },
+				requirements: function() {
+					return (
+						V.policies.SMR.height.basicSMR === 0 &&
+						V.arcologies[0].FSPetiteAdmirationSMR === 0 &&
+						V.arcologies[0].FSStatuesqueGlorificationSMR === 0
+					);
+				},
 				note: "This will raise the price of slaves"
 			},
 			{
 				title: "Quality Height Standards (Short)",
 				text: "no slaves of above average height for their age may be sold in the slave markets.",
 				activatedText: "no slaves of average average height for their age may be sold in the slave markets.",
-				requirements: function() { if (V.policies.SMR.height.basicSMR === 0 && V.arcologies[0].FSPetiteAdmirationSMR === 0 && V.arcologies[0].FSStatuesqueGlorificationSMR === 0) { return true; } else { return false; } },
+				requirements: function() {
+					return (
+						V.policies.SMR.height.basicSMR === 0 &&
+						V.arcologies[0].FSPetiteAdmirationSMR === 0 &&
+						V.arcologies[0].FSStatuesqueGlorificationSMR === 0
+					);
+				},
 				enable: -1,
 				note: "This will raise the price of slaves"
 			}
@@ -213,7 +225,12 @@ App.Data.Policies.Selection = {
 			{
 				title: "Basic Intelligence Standards",
 				text: "no stupid slaves may be sold in the slave markets.",
-				requirements: function() { if (V.arcologies[0].FSIntellectualDependencySMR === 0 && V.policies.SMR.intelligence.qualitySMR === 0) { return true; } else { return false; } },
+				requirements: function() {
+					return (
+						V.arcologies[0].FSIntellectualDependencySMR === 0 &&
+						V.policies.SMR.intelligence.qualitySMR === 0
+					);
+				},
 				note: "This will raise the price of slaves and exclude quality standards"
 			}
 		],
@@ -222,7 +239,12 @@ App.Data.Policies.Selection = {
 			{
 				title: "Quality Intelligence Standards",
 				text: "only intelligent slaves may be sold in the slave markets.",
-				requirements: function() { if (V.arcologies[0].FSIntellectualDependencySMR === 0 && V.policies.SMR.intelligence.basicSMR === 0) { return true; } else { return false; } },
+				requirements: function() {
+					return (
+						V.arcologies[0].FSIntellectualDependencySMR === 0 &&
+						V.policies.SMR.intelligence.basicSMR === 0
+					);
+				},
 				note: "This will raise the price of slaves significantly"
 			}
 		],
@@ -286,7 +308,7 @@ App.Data.Policies.Selection = {
 				title: "Child Protection Act",
 				text: "underage slaves enjoy protections only against penetrative sex.",
 				activatedText: "underage slaves enjoy protections against molestation and rape.",
-				requirements: function() { if (V.extremeUnderage === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.extremeUnderage === 1); },
 			}
 		],
 		"arcologies[0].FSEgyptianRevivalistIncestPolicy": [
@@ -294,9 +316,7 @@ App.Data.Policies.Selection = {
 				title: "Incest Encouragement",
 				text: "you will use your personal influence to spur interest in incest.",
 				activatedText: "you are using your personal influence to spur interest in incest.",
-				requirements: function() {
-					if (V.arcologies[0].FSEgyptianRevivalist === "unset") { return true; } else { return false; }
-				},
+				requirements: function() { return (V.arcologies[0].FSEgyptianRevivalist === "unset"); },
 			}
 		],
 	},
@@ -306,7 +326,7 @@ App.Data.Policies.Selection = {
 				title: "Encourage Refugee Servitude",
 				text: "the image of slavery in your arcology will be softened, encouraging old world refugees to consider slavery.",
 				activatedText: "the image of slavery in your arcology is being softened, encouraging old world refugees to consider becoming menial slaves.",
-				requirements: function() { if (V.arcologies[0].FSDegradationist === "unset") { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSDegradationist === "unset"); },
 				note: "Will increase immigration of refugees to become menial slaves"
 			}
 		],
@@ -502,7 +522,7 @@ App.Data.Policies.Selection = {
 				title: "Marriage between Owners and Slaves",
 				text: "you will provide a legal basis for citizens to marry their slaves without impacting their rights as slaveowners.",
 				activatedText: "you are providing a legal basis for citizens to marry their slaves without impacting their rights as slaveowners.",
-				requirements: function() { if (V.arcologies[0].FSDegradationist === "unset") { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSDegradationist === "unset"); },
 				get note() {
 					if (V.arcologies[0].FSPaternalist >= 60) {
 						return `Will not damage your reputation due to your arcology's advanced Paternalism`;
@@ -519,14 +539,14 @@ App.Data.Policies.Selection = {
 				title: "The Slave School subsidy",
 				text: "you will subsidize this school's branch campus in your arcology.",
 				activatedText: "you are subsidizing this school's branch campus in your arcology.",
-				requirements: function() { if (V.TSS.schoolProsperity < 10 && V.TSS.schoolProsperity < 10) { return true; } else { return false; } },
+				requirements: function() { return (V.TSS.schoolProsperity < 10 && V.TSS.schoolProsperity < 10); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			},
 			{
 				title: "Undermine The Slave School",
 				text: "you will covertly hurt this school's branch campus in your arcology.",
 				activatedText: "you are covertly hurting this school's branch campus in your arcology.",
-				requirements: function() { if (V.TSS.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.TSS.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			}
 		],
@@ -535,14 +555,14 @@ App.Data.Policies.Selection = {
 				title: "The Growth Research Institute subsidy",
 				text: "you will subsidize this school's branch campus in your arcology.",
 				activatedText: "you are subsidizing this school's branch campus in your arcology.",
-				requirements: function() { if (V.GRI.schoolProsperity < 10 && V.GRI.schoolProsperity < 10) { return true; } else { return false; } },
+				requirements: function() { return (V.GRI.schoolProsperity < 10 && V.GRI.schoolProsperity < 10); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			},
 			{
 				title: "Undermine the Growth Research Institute",
 				text: "you will covertly hurt this school's branch campus in your arcology.",
 				activatedText: "you are covertly hurting this school's branch campus in your arcology.",
-				requirements: function() { if (V.GRI.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.GRI.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			}
 		],
@@ -551,14 +571,14 @@ App.Data.Policies.Selection = {
 				title: "St. Claver Preparatory subsidy",
 				text: "you will subsidize this school's branch campus in your arcology.",
 				activatedText: "you are subsidizing this school's branch campus in your arcology.",
-				requirements: function() { if (V.SCP.schoolProsperity < 10 && V.SCP.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.SCP.schoolProsperity < 10 && V.SCP.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			},
 			{
 				title: "Undermine St. Claver Preparatory",
 				text: "you will covertly hurt this school's branch campus in your arcology.",
 				activatedText: "you are covertly hurting this school's branch campus in your arcology.",
-				requirements: function() { if (V.SCP.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.SCP.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			}
 		],
@@ -567,14 +587,14 @@ App.Data.Policies.Selection = {
 				title: "L'École des Enculées subsidy",
 				text: "you will subsidize this school's branch campus in your arcology.",
 				activatedText: "you are subsidizing this school's branch campus in your arcology.",
-				requirements: function() { if (V.LDE.schoolProsperity < 10 && V.LDE.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.LDE.schoolProsperity < 10 && V.LDE.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			},
 			{
 				title: "Undermine L'École des Enculées",
 				text: "you will covertly hurt this school's branch campus in your arcology.",
 				activatedText: "you are covertly hurting this school's branch campus in your arcology.",
-				requirements: function() { if (V.LDE.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.LDE.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			}
 		],
@@ -583,14 +603,14 @@ App.Data.Policies.Selection = {
 				title: "The Gymnasium-Academy subsidy",
 				text: "you will subsidize this school's branch campus in your arcology.",
 				activatedText: "you are subsidizing this school's branch campus in your arcology.",
-				requirements: function() { if (V.TGA.schoolProsperity < 10 && V.TGA.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.TGA.schoolProsperity < 10 && V.TGA.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			},
 			{
 				title: "Undermine the Gymnasium-Academy",
 				text: "you will covertly hurt this school's branch campus in your arcology.",
 				activatedText: "you are covertly hurting this school's branch campus in your arcology.",
-				requirements: function() { if (V.TGA.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.TGA.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			}
 		],
@@ -599,14 +619,14 @@ App.Data.Policies.Selection = {
 				title: "The Cattle Ranch subsidy",
 				text: "you will subsidize this school's branch campus in your arcology.",
 				activatedText: "you are subsidizing this school's branch campus in your arcology.",
-				requirements: function() { if (V.TCR.schoolProsperity < 10 && V.TCR.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.TCR.schoolProsperity < 10 && V.TCR.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			},
 			{
 				title: "Undermine The Cattle Ranch",
 				text: "you will covertly hurt this school's branch campus in your arcology.",
 				activatedText: "you are covertly hurting this school's branch campus in your arcology.",
-				requirements: function() { if (V.TCR.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.TCR.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			}
 		],
@@ -615,14 +635,14 @@ App.Data.Policies.Selection = {
 				title: "Futanari Sisters subsidy",
 				text: "you will subsidize this school's branch campus in your arcology.",
 				activatedText: "you are subsidizing this school's branch campus in your arcology.",
-				requirements: function() { if (V.TFS.schoolProsperity < 10 && V.TFS.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.TFS.schoolProsperity < 10 && V.TFS.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			},
 			{
 				title: "Undermine the Futanari Sisters",
 				text: "you will covertly hurt this school's branch campus in your arcology.",
 				activatedText: "you are covertly hurting this school's branch campus in your arcology.",
-				requirements: function() { if (V.TFS.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.TFS.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			}
 		],
@@ -631,14 +651,14 @@ App.Data.Policies.Selection = {
 				title: "Hippolyta Academy subsidy",
 				text: "you will subsidize this school's branch campus in your arcology.",
 				activatedText: "you are subsidizing this school's branch campus in your arcology.",
-				requirements: function() { if (V.HA.schoolProsperity < 10 && V.HA.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.HA.schoolProsperity < 10 && V.HA.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			},
 			{
 				title: "Undermine the Hippolyta Academy",
 				text: "you will covertly hurt this school's branch campus in your arcology.",
 				activatedText: "you are covertly hurting this school's branch campus in your arcology.",
-				requirements: function() { if (V.HA.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.HA.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			}
 		],
@@ -647,14 +667,14 @@ App.Data.Policies.Selection = {
 				title: "Nueva Universidad de Libertad subsidy",
 				text: "you will subsidize this school's branch campus in your arcology.",
 				activatedText: "you are subsidizing this school's branch campus in your arcology.",
-				requirements: function() { if (V.NUL.schoolProsperity < 10 && V.NUL.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.NUL.schoolProsperity < 10 && V.NUL.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			},
 			{
 				title: "Undermine Nueva Universidad de Libertad",
 				text: "you will covertly hurt this school's branch campus in your arcology.",
 				activatedText: "you are covertly hurting this school's branch campus in your arcology.",
-				requirements: function() { if (V.NUL.schoolPresent === 1) { return true; } else { return false; } },
+				requirements: function() { return (V.NUL.schoolPresent === 1); },
 				get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
 			}
 		],
@@ -732,14 +752,14 @@ App.Data.Policies.Selection = {
 					text += `production.`;
 					return text;
 				},
-				requirements: function() { if (V.arcologies[0].FSPaternalist === "unset") { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSPaternalist === "unset"); },
 				enable: "bioreactor"
 			},
 			{
 				title: "Public Arcade Retirement",
 				text: "once reaching mandatory retirement age, slaves will be placed in cheap public arcades to be used until useless.",
 				activatedText: "once reaching mandatory retirement age, slaves are placed in cheap public arcades to be used until useless.",
-				requirements: function() { if (V.arcologies[0].FSPaternalist === "unset") { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSPaternalist === "unset"); },
 				enable: "arcade"
 			},
 			{
@@ -778,7 +798,7 @@ App.Data.Policies.Selection = {
 					return el;
 				},
 				enable: 10000,
-				requirements: function() { if (V.policies.retirement.fate === "citizen") { return true; } else { return false; } },
+				requirements: function() { return (V.policies.retirement.fate === "citizen"); },
 			}
 		],
 		"policies.retirement.milk": [
@@ -808,7 +828,7 @@ App.Data.Policies.Selection = {
 					return el;
 				},
 				enable: 50000,
-				requirements: function() { if (V.policies.retirement.fate === "citizen") { return true; } else { return false; } },
+				requirements: function() { return (V.policies.retirement.fate === "citizen"); },
 			}
 		],
 		"policies.retirement.cum": [
@@ -838,7 +858,7 @@ App.Data.Policies.Selection = {
 					return el;
 				},
 				enable: 500000,
-				requirements: function() { if (V.policies.retirement.fate === "citizen" && (V.seeDicks > 0 || V.makeDicks)) { return true; } else { return false; } },
+				requirements: function() { return (V.policies.retirement.fate === "citizen" && (V.seeDicks > 0 || V.makeDicks)); },
 			}
 		],
 		"policies.retirement.births": [
@@ -868,7 +888,7 @@ App.Data.Policies.Selection = {
 					return el;
 				},
 				enable: 5,
-				requirements: function() { if (V.policies.retirement.fate === "citizen") { return true; } else { return false; } },
+				requirements: function() { return (V.policies.retirement.fate === "citizen"); },
 			}
 		],
 		"policies.retirement.kills": [
@@ -898,7 +918,7 @@ App.Data.Policies.Selection = {
 					return el;
 				},
 				enable: 3,
-				requirements: function() { if (V.policies.retirement.fate === "citizen") { return true; } else { return false; } },
+				requirements: function() { return (V.policies.retirement.fate === "citizen"); },
 			}
 		],
 	},
@@ -949,7 +969,7 @@ App.Data.Policies.Selection = {
 				activatedTitle: "Mandatory Menial Retirement Age",
 				text: `all slaveowners will be required to pay into accounts to support their slaves as lower-class citizens in retirement.`,
 				get activatedText() { return `you have set your arcology's retirement age for menial slaves at ${V.customMenialRetirementAge}.`; },
-				requirements: function() { if (V.arcologies[0].FSDegradationist === "unset") { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSDegradationist === "unset"); },
 				note: `Will add upkeep to all menial slaves`,
 				onImplementation: function() { if (V.citizenRetirementTrigger === 0) { V.citizenRetirementTrigger = 1; } },
 				onRepeal: function() { V.customMenialRetirementAge = 45; }
@@ -962,13 +982,13 @@ App.Data.Policies.Selection = {
 				title: "Cultural Openness",
 				text: "you will promote the exchange of ideas between arcologies, increasing cultural crossover between your arcology and its neighbors.",
 				activatedText: "you are promoting the exchange of ideas between arcologies, increasing cultural crossover between your arcology and its neighbors.",
-				requirements: function() { if (V.arcologies.length > 1) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies.length > 1); },
 			},
 			{
 				title: "Cultural Defensiveness",
 				text: "you will do your best to suppress the exchange of ideas between arcologies, reducing cultural crossover between your arcology and its neighbors.",
 				activatedText: " you are doing your best to suppress the exchange of ideas between arcologies, reducing cultural crossover between your arcology and its neighbors.",
-				requirements: function() { if (V.arcologies.length > 1) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies.length > 1); },
 				enable: -1,
 			},
 		],
@@ -980,7 +1000,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "you will do your best to start a fashion for elegant girls with just the right amount of T&A.",
 				activatedText: "you are doing your best to maintain a fashion for elegant girls with just the right amount of T&A.",
-				requirements: function() { if (V.arcologies[0].FSSlimnessEnthusiastLaw === 0 && V.arcologies[0].FSHedonisticDecadenceLaw2 === 0 && V.arcologies[0].FSPhysicalIdealistLaw === 0) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSSlimnessEnthusiastLaw === 0 && V.arcologies[0].FSHedonisticDecadenceLaw2 === 0 && V.arcologies[0].FSPhysicalIdealistLaw === 0); },
 			}
 		],
 		"arcologies[0].FSGenderFundamentalistLawBimbo": [
@@ -996,7 +1016,7 @@ App.Data.Policies.Selection = {
 				title: "Mandatory Feminization SMR",
 				titleClass: "lime",
 				text: "in order to be sold in the arcology, slaves with dicks must have their balls removed.",
-				requirements: function() { if (V.arcologies[0].FSGenderFundamentalist >= 40) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSGenderFundamentalist >= 40); },
 				note: `Will help advance Gender Fundamentalism`
 			}
 		],
@@ -1008,7 +1028,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "you will do your best to start a fashion for turning slaves into elegant girls with just the right amount of T&A.",
 				activatedText: "you are doing your best to maintain a fashion for turning slaves into elegant girls with just the right amount of T&A.",
-				requirements: function() { if (V.arcologies[0].FSSlimnessEnthusiastLaw === 0 && V.arcologies[0].FSHedonisticDecadenceLaw2 === 0 && V.arcologies[0].FSPhysicalIdealistLaw === 0) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSSlimnessEnthusiastLaw === 0 && V.arcologies[0].FSHedonisticDecadenceLaw2 === 0 && V.arcologies[0].FSPhysicalIdealistLaw === 0); },
 			}
 		],
 		"arcologies[0].FSGenderRadicalistLawFuta": [
@@ -1018,7 +1038,7 @@ App.Data.Policies.Selection = {
 				text: "you will encourage veneration of slaves with both dicks and pussies.",
 				activatedText: "you are encouraging Gender Radicalism towards veneration of slaves with both dicks and pussies.",
 				enable: 1,
-				requirements: function() { if (V.seeDicks !== 0) { return true; } else { return false; } },
+				requirements: function() { return (V.seeDicks !== 0); },
 				note: `Will affect citizens' appreciation of futas`
 			},
 			{
@@ -1027,7 +1047,7 @@ App.Data.Policies.Selection = {
 				text: "you will encourage an appreciation for stiff dicks and swinging balls.",
 				activatedText: "you are encouraging Gender Radicalism towards an appreciation for stiff dicks and swinging balls.",
 				enable: 2,
-				requirements: function() { if (V.seeDicks !== 0) { return true; } else { return false; } },
+				requirements: function() { return (V.seeDicks !== 0); },
 				note: `Will affect slaves' attractiveness to citizens`
 			},
 			{
@@ -1036,7 +1056,7 @@ App.Data.Policies.Selection = {
 				text: "you will encourage an appreciation for broad hips, plush asses, big buttholes, and skilled sphincters.",
 				activatedText: "you are encouraging an appreciation for broad hips, plush asses, big buttholes, and skilled sphincters.",
 				enable: 3,
-				requirements: function() { if (V.seeDicks !== 0) { return true; } else { return false; } },
+				requirements: function() { return (V.seeDicks !== 0); },
 				note: `Will affect slaves' attractiveness to citizens`
 			},
 			{
@@ -1045,7 +1065,7 @@ App.Data.Policies.Selection = {
 				text: "you will encourage an appreciation for cute, flat chested slaves with small male genitals and no vagina.",
 				activatedText: "you are encouraging an appreciation for cute, flat chested slaves with small male genitals and no vagina.",
 				enable: 4,
-				requirements: function() { if (V.seeDicks !== 0) { return true; } else { return false; } },
+				requirements: function() { return (V.seeDicks !== 0); },
 				note: `Will affect slaves' attractiveness to citizens`
 			},
 		],
@@ -1057,7 +1077,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "the slave markets will be required to treat incoming slaves reasonably well.",
 				activatedText: "the slave markets are required to treat incoming slaves reasonably well.",
-				requirements: function() { if (V.arcologies[0].FSDegradationistSMR === 0) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSDegradationistSMR === 0); },
 				note: `Will reduce the arcology's prosperity and help advance Paternalism`
 			}
 		],
@@ -1067,7 +1087,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "slaveowners who treat their slaves well will be offered reduced rent.",
 				activatedText: "slaveowners who treat their slaves well are offered reduced rent.",
-				requirements: function() { if (V.arcologies[0].FSPaternalist >= 60) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSPaternalist >= 60); },
 				note: `Will reduce your rental income`
 			}
 		],
@@ -1079,7 +1099,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "slave markets will be required to punish new slaves severely simply to introduce them to pain.",
 				activatedText: "slave markets are required to punish new slaves severely simply to introduce them to pain.",
-				requirements: function() { if (V.arcologies[0].FSPaternalistSMR === 0) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSPaternalistSMR === 0); },
 				note: `Will help advance Degradationism`
 			}
 		],
@@ -1089,7 +1109,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "slaveowners will be required to allow their menial slaves to use the sex arcades.",
 				activatedText: "slaveowners are required to allow their menial slaves to use the sex arcades.",
-				requirements: function() { if (V.arcologies[0].FSDegradationist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSDegradationist >= 90); },
 				note: `Will reduce labor efficiency, damaging the arcology's prosperity and adds a cost to each menial slave`
 			}
 		],
@@ -1101,7 +1121,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "in order to be sold in the arcology, slaves will need to fail a simple intelligence test.",
 				activatedText: "in order to be sold in the arcology, slaves must fail a simple intelligence test.",
-				requirements: function() { if (V.arcologies[0].FSSlaveProfessionalismSMR === 0) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSSlaveProfessionalismSMR === 0); },
 				onImplementation: function() {
 					V.policies.SMR.intelligence.basicSMR = 0;
 					V.policies.SMR.intelligence.qualitySMR = 0;
@@ -1121,7 +1141,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "you will do your best to start an appreciation for stereotypical bimbo bodies.",
 				activatedText: "you are encouraging an appreciation for the stereotypical bimbo body.",
-				requirements: function() { if (V.arcologies[0].FSIntellectualDependency >= 60) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSIntellectualDependency >= 60); },
 				note: `Will greatly affect society's views on slave beauty`
 			}
 		],
@@ -1130,7 +1150,7 @@ App.Data.Policies.Selection = {
 				title: "Invalid Protection Act",
 				titleClass: "lime",
 				text: "by law, anyone unable to pass a standardized test of intelligence and not already a dependant will be enslaved for their own well being.",
-				requirements: function() { if (V.arcologies[0].FSIntellectualDependency >= 80) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSIntellectualDependency >= 80); },
 				note: `Will convert some immigrants to menial slaves and give a small boost to reputation`
 			}
 		],
@@ -1141,7 +1161,7 @@ App.Data.Policies.Selection = {
 				title: "Head Start SMR",
 				titleClass: "lime",
 				text: "in order to be sold in the arcology, slaves must pass a rigorous course designed to bring their skills and poise up to standard.",
-				requirements: function() { if (V.arcologies[0].FSIntellectualDependencySMR) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSIntellectualDependencySMR); },
 				note: `Will help advance Slave Professionalism`
 			}
 		],
@@ -1151,7 +1171,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "citizens will be required to pass regular intelligence tests or face expulsion from the arcology.",
 				activatedText: "citizens must pass regular intelligence tests or face expulsion from the arcology.",
-				requirements: function() { if (V.arcologies[0].FSSlaveProfessionalism >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSSlaveProfessionalism >= 90); },
 				onImplementation: function() {
 					if (V.FSSlaveProfLawTrigger === 0) {
 						V.FSSlaveProfLawTrigger = 1;
@@ -1177,7 +1197,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "all drugs in the arcology will be subjected to rigorous testing for purity.",
 				activatedText: "all drugs in the arcology must pass rigorous testing for purity.",
-				requirements: function() { if (V.arcologies[0].FSBodyPurist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSBodyPurist >= 90); },
 				note: `Will reduce slaving profits, damaging the arcology's prosperity`
 			}
 		],
@@ -1209,7 +1229,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "young citizens will be offered reduced rent.",
 				activatedText: "young citizens are offered reduced rent.",
-				requirements: function() { if (V.arcologies[0].FSYouthPreferentialist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSYouthPreferentialist >= 90); },
 				note: `Will reduce your rental income`
 			}
 		],
@@ -1230,7 +1250,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "older citizens will be offered reduced rent.",
 				activatedText: "older citizens are offered reduced rent.",
-				requirements: function() { if (V.arcologies[0].FSMaturityPreferentialist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSMaturityPreferentialist >= 90); },
 				note: `Will reduce your rental income`
 			}
 		],
@@ -1242,7 +1262,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "in order to be sold in the arcology, slaves will have to pass height requirements.",
 				activatedText: "in order to be sold in the arcology, slaves must pass height requirements.",
-				requirements: function() { if (V.arcologies[0].FSStatuesqueGlorificationSMR === 0) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSStatuesqueGlorificationSMR === 0); },
 				onImplementation: function() {
 					if (V.policies.SMR.height.advancedSMR > 0) {
 						V.policies.SMR.height.advancedSMR = 0;
@@ -1266,7 +1286,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "you will do your best to push a taste for relative height rather than a strict cut-off.",
 				activatedText: "beauty standards are based off of relative expected height as opposed to a strict cutoff.",
-				requirements: function() { if (V.arcologies[0].FSPetiteAdmiration >= 60) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSPetiteAdmiration >= 60); },
 				note: `Will weaken beauty standards by making them more easily attainable but may flush out cheaters`
 			}
 		],
@@ -1276,7 +1296,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "citizens will be offered reduced rent for keeping slaves and taking partners far shorter than themselves.",
 				activatedText: "citizens are offered reduced rent for keeping slaves far shorter than themselves.",
-				requirements: function() { if (V.arcologies[0].FSPetiteAdmiration >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSPetiteAdmiration >= 90); },
 				note: `Will reduce your rental income`
 			}
 		],
@@ -1311,7 +1331,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "you will do your best to push focus on to relative height rather than a strict cutoff.",
 				activatedText: "beauty standards are based off of relative expected height as opposed to a strict cutoff.",
-				requirements: function() { if (V.arcologies[0].FSStatuesqueGlorification >= 60) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSStatuesqueGlorification >= 60); },
 				note: `Will weaken beauty standards by making them more easily attainable`
 			}
 		],
@@ -1321,7 +1341,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "tall citizens will be offered reduced rent at short citizens' expense.",
 				activatedText: "tall citizens are offered reduced rent at short citizens' expense.",
-				requirements: function() { if (V.arcologies[0].FSStatuesqueGlorification >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSStatuesqueGlorification >= 90); },
 			}
 		],
 	},
@@ -1341,13 +1361,13 @@ App.Data.Policies.Selection = {
 				text: "you will do your best to start a fashion for elegant girls with just the right amount of T&A, none!",
 				activatedText: "you are doing your best to maintain a fashion for elegant girls with just the right amount of T&A, none!",
 				requirements: function() {
-					if (
+					return (
 						V.arcologies[0].FSGenderRadicalistLawBeauty === 0 &&
 						V.arcologies[0].FSGenderFundamentalistLawBeauty === 0 &&
 						V.arcologies[0].FSGenderRadicalistLawFuta !== 3 &&
 						V.arcologies[0].FSHedonisticDecadenceLaw2 === 0 &&
 						V.arcologies[0].FSPhysicalIdealistLaw === 0
-					) { return true; } else { return false; }
+					);
 				},
 				note: `Flat slaves will enjoy increased attractiveness to citizens`
 			}
@@ -1379,7 +1399,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "animal products that compete with slave fluids will be banned.",
 				activatedText: "animal products that compete with slave fluids are banned.",
-				requirements: function() { if (V.arcologies[0].FSPastoralist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSPastoralist >= 90); },
 				note: `Will reduce market freedom, damaging the arcology's prosperity`
 			}
 		],
@@ -1417,14 +1437,14 @@ App.Data.Policies.Selection = {
 				text: "you will do your best to start a fashion for fit, healthy girls with just the right amount of muscle definition.",
 				activatedText: "you are doing your best to maintain a fashion for fit, healthy girls with just the right amount of muscle definition.",
 				requirements: function() {
-					if (
+					return (
 						V.arcologies[0].FSHedonisticDecadenceLaw2 === 0 &&
 						V.arcologies[0].FSSlimnessEnthusiastLaw === 0 &&
 						V.arcologies[0].FSGenderRadicalistLawBeauty === 0 &&
 						V.arcologies[0].FSGenderFundamentalistLawBeauty === 0 &&
 						V.arcologies[0].FSPhysicalIdealistStrongFat === 0 &&
 						V.arcologies[0].FSPhysicalIdealist >= 60
-					) { return true; } else { return false; }
+					);
 				},
 				note: `Will greatly affect society's views on slave beauty`
 			}
@@ -1435,7 +1455,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "you will do your best to start a fashion for strong girls with a thick layer of fat over their muscles.",
 				activatedText: "you are doing your best to maintain a fashion for strong girls with a thick layer of fat over their muscles.",
-				requirements: function() { if (V.arcologies[0].FSPhysicalIdealist >= 60) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSPhysicalIdealist >= 60); },
 				note: `Will greatly affect society's views on slave beauty`
 			}
 		],
@@ -1457,14 +1477,14 @@ App.Data.Policies.Selection = {
 				text: "you will do your best to start a fashion for thick girls with soft bellies, big butts and luscious tits.",
 				activatedText: "you are doing your best to maintain a fashion for thick girls with soft bellies, big butts and luscious tits.",
 				requirements: function() {
-					if (
+					return (
 						V.arcologies[0].FSSlimnessEnthusiastLaw === 0 &&
 						V.arcologies[0].FSGenderRadicalistLawBeauty === 0 &&
 						V.arcologies[0].FSGenderFundamentalistLawBeauty === 0 &&
 						V.arcologies[0].FSPhysicalIdealistLaw === 0 &&
 						V.arcologies[0].FSGenderRadicalistLawFuta !== 3 &&
 						V.arcologies[0].FSHedonisticDecadence >= 60
-					) { return true; } else { return false; }
+					);
 				},
 				note: `Will greatly affect society's views on slave beauty`
 			}
@@ -1475,7 +1495,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "you will do your best to start a fashion for thick girls with plenty of muscle under their fat.",
 				activatedText: "you are doing your best to maintain a fashion for thick, strong girls.",
-				requirements: function() { if (V.arcologies[0].FSHedonisticDecadence >= 60) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSHedonisticDecadence >= 60); },
 				note: `Will greatly affect society's views on slave beauty`
 			}
 		],
@@ -1485,7 +1505,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "food vendors will be offered reduced rent and operating expenses.",
 				activatedText: "food vendors are offered reduced rent and operating expenses.",
-				requirements: function() { if (V.arcologies[0].FSHedonisticDecadence >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSHedonisticDecadence >= 90); },
 				note: `Will improve prosperity but decrease rental income — tailors may see increased business`
 			}
 		],
@@ -1506,7 +1526,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "you will be enshrined as the prophet of a vibrant slaveowning religion.",
 				activatedText: "you are enshrined as the prophet of a vibrant slaveowning religion.",
-				requirements: function() { if (V.arcologies[0].FSChattelReligionist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSChattelReligionist >= 90); },
 				note: `Will increase your renown`
 			}
 		],
@@ -1602,7 +1622,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "all citizens of stature will be required to participate personally in the defense of the state.",
 				activatedText: "all citizens of stature are required to participate personally in the defense of the state.",
-				requirements: function() { if (V.arcologies[0].FSRomanRevivalist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSRomanRevivalist >= 90); },
 				note: `Will improve your arcology's combat power during crises`
 			}
 		],
@@ -1623,7 +1643,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "to inherit or receive a trade a citizen will have to pass a mandatory course in one of the academies.",
 				activatedText: "to inherit or receive a trade a citizen must pass a mandatory course in one of the academies.",
-				requirements: function() { if (V.arcologies[0].FSAztecRevivalist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSAztecRevivalist >= 90); },
 				note: `Will improve your arcology's combat power during crises`
 			}
 		],
@@ -1647,7 +1667,7 @@ App.Data.Policies.Selection = {
 					const {his} = getPronouns(getSlave(V.HeadGirl.ID));
 					return `your Head Girl holds legal status as your Consort, increasing ${his} prominence.`;
 				},
-				requirements: function() { if (V.arcologies[0].FSEgyptianRevivalist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSEgyptianRevivalist >= 90); },
 				note: `Will increase your Head Girl's prominence`
 			}
 		],
@@ -1668,7 +1688,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "will protect the arcology from old world influences.",
 				activatedText: "protects the arcology from old world influences, speeding the acceptance of all future societies.",
-				requirements: function() { if (V.arcologies[0].FSEdoRevivalist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSEdoRevivalist >= 90); },
 				note: `Will speed the acceptance of all future societies`
 			}
 		],
@@ -1689,7 +1709,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "will raise the rents of unassimilated citizens, speeding the acceptance of all future societies.",
 				activatedText: "raises the rents of unassimilated citizens, speeding the acceptance of all future societies.",
-				requirements: function() { if (V.arcologies[0].FSArabianRevivalist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSArabianRevivalist >= 90); },
 				note: `Will moderately increase rental income and improve acceptance of all future societies`
 			}
 		],
@@ -1716,7 +1736,7 @@ App.Data.Policies.Selection = {
 					const {him} = getPronouns(getSlave(V.HeadGirl.ID));
 					return `affords your Head Girl considerable legal power, allowing ${him} to accomplish even more slave training.`;
 				},
-				requirements: function() { if (V.arcologies[0].FSChineseRevivalist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSChineseRevivalist >= 90); },
 			}
 		],
 	},
@@ -1727,7 +1747,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "in order to be sold in the arcology, slaves will be made capable of pregnancy, if they are not, and subsequently impregnated.",
 				activatedText: "in order to be sold in the arcology, slaves must be pregnant.",
-				requirements: function() { if (V.arcologies[0].FSRepopulationFocusDecoration >= 40) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSRepopulationFocusDecoration >= 40); },
 				note: `Will help advance repopulation efforts. Due to surgery costs, male slaves will become less common`
 			}
 		],
@@ -1737,7 +1757,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "pregnant citizens will be offered reduced rent.",
 				activatedText: "all pregnant citizens are offered reduced rent.",
-				requirements: function() { if (V.arcologies[0].FSRepopulationFocusDecoration >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSRepopulationFocusDecoration >= 90); },
 				note: `Will reduce your rental income`
 			}
 		],
@@ -1749,7 +1769,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "in order to be sold in the arcology, slaves of inferior races with dicks must have their balls removed to prevent racial pollution.",
 				activatedText: "in order to be sold in the arcology, slaves of inferior races with dicks will have to have their balls removed to prevent racial pollution.",
-				requirements: function() { if (V.seeDicks !== 0 && V.arcologies[0].FSSupremacist >= 40) { return true; } else { return false; } },
+				requirements: function() { return (V.seeDicks !== 0 && V.arcologies[0].FSSupremacist >= 40); },
 				note: `Will help advance racial Supremacy`
 			}
 		],
@@ -1759,7 +1779,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				get text() { return `will force anyone not of the ${V.arcologies[0].FSSupremacistRace} race to emigrate or accept enslavement, and make sex with non-${V.arcologies[0].FSSupremacistRace} people such an expectation that the appetite for all such slaves will increase slightly.`; },
 				get activatedText() { return `by law, anyone not of the ${V.arcologies[0].FSSupremacistRace} in your arcology is a slave`; },
-				requirements: function() { if (V.seeDicks !== 0 && V.arcologies[0].FSSupremacist >= 40) { return true; } else { return false; } },
+				requirements: function() { return (V.seeDicks !== 0 && V.arcologies[0].FSSupremacist >= 40); },
 				onImplementation: function() { V.FSSupLawTrigger = 1; },
 				note: `Will affect the slave market and arcology drastically`
 			}
@@ -1770,7 +1790,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "in order to be sold in the arcology, subhumans with dicks will have to have their balls removed to prevent racial pollution.",
 				activatedText: "in order to be sold in the arcology, subhumans with dicks must have their balls removed to prevent racial pollution.",
-				requirements: function() { if (V.seeDicks !== 0 && V.arcologies[0].FSSubjugationist >= 40) { return true; } else { return false; } },
+				requirements: function() { return (V.seeDicks !== 0 && V.arcologies[0].FSSubjugationist >= 40); },
 				note: `Will help advance racial Subjugation`
 			}
 		],
@@ -1780,7 +1800,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				get text() { return `will force slavery on all ${V.arcologies[0].FSSubjugationistRace} subhumans in your arcology, and make sex with ${V.arcologies[0].FSSubjugationistRace} people such an expectation that the appetite for all such slaves will increase slightly.`; },
 				get activatedText() { return `by law, all ${V.arcologies[0].FSSubjugationistRace} subhumans in your arcology are slaves`; },
-				requirements: function() { if (V.arcologies[0].FSSubjugationist >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSSubjugationist >= 90); },
 				onImplementation: function() {
 					if (V.FSSubLawTrigger === 0) {
 						V.FSSubLawTrigger = 1;
@@ -1796,7 +1816,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "in order to be sold in the arcology, slave ovaries and testicles will be removed.",
 				activatedText: "in order to be sold in the arcology, slaves must be infertile.",
-				requirements: function() { if (V.arcologies[0].FSRestartDecoration >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSRestartDecoration >= 90); },
 				note: `Will help advance starting society over`
 			}
 		],
@@ -1806,7 +1826,7 @@ App.Data.Policies.Selection = {
 				titleClass: "lime",
 				text: "fertile civilians, who are not part of society's Elite, will face increased taxation.",
 				activatedText: "all fertile lower class citizens pay increased taxes.",
-				requirements: function() { if (V.arcologies[0].FSRestartDecoration >= 90) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSRestartDecoration >= 90); },
 				note: `Will increase your rental income, but the lower class will dislike you`
 			}
 		],
@@ -1815,7 +1835,7 @@ App.Data.Policies.Selection = {
 				title: "Elite Breeder Eligibility",
 				titleClass: "lime",
 				text: "slaves that pass very strict tests may be permitted for use by the Societal Elite to bear their children.",
-				requirements: function() { if (V.arcologies[0].FSRestartDecoration >= 100 && V.rep >= 5000) { return true; } else { return false; } },
+				requirements: function() { return (V.arcologies[0].FSRestartDecoration >= 100 && V.rep >= 5000); },
 				onImplementation: function() {
 					repX(-4000, "policies");
 				},
@@ -1829,9 +1849,11 @@ App.Data.Policies.Selection = {
 				text: "you will use your personal influence to spur interest in pregnancy.",
 				activatedText: "you are using your personal influence to spur interest in pregnancy.",
 				requirements: function() {
-					if (
-						V.arcologies[0].FSRepopulationFocus === "unset" && V.arcologies[0].FSRestart === "unset" && V.seePreg
-					) { return true; } else { return false; }
+					return (
+						V.arcologies[0].FSRepopulationFocus === "unset" &&
+						V.arcologies[0].FSRestart === "unset" &&
+						V.seePreg
+					);
 				},
 			}
 		],
@@ -1841,9 +1863,10 @@ App.Data.Policies.Selection = {
 				text: "you will use your personal influence to spur interest in MILFs.",
 				activatedText: "you are using your personal influence to spur interest in MILFs.",
 				requirements: function() {
-					if (
-						V.arcologies[0].FSRepopulationFocus === "unset" && V.arcologies[0].FSRestart === "unset"
-					) { return true; } else { return false; }
+					return (
+						V.arcologies[0].FSRepopulationFocus === "unset" &&
+						V.arcologies[0].FSRestart === "unset"
+					);
 				},
 			}
 		],
-- 
GitLab