diff --git a/game/03-JavaScript/bedroomPills.js b/game/03-JavaScript/bedroomPills.js
index 41543dbb44b194b5d023dd8aa770d5f45f60eecb..9f1faccdb9f307c3f197e6d307d3eb29f16364e5 100644
--- a/game/03-JavaScript/bedroomPills.js
+++ b/game/03-JavaScript/bedroomPills.js
@@ -217,7 +217,7 @@ setup.pills = [
 	{
 		name: "breast blocker",
 		description:
-			"A selective estrogen receptor modulator (SERM), blocking the protein receptors responsible for breast growth; supplemented by 269mg of Tetraozealpostigyl.",
+			"A selective oestrogen receptor modulator (SERM), blocking the protein receptors responsible for breast growth; supplemented by 269mg of Tetraozealpostigyl.",
 		onTakeMessage: "You take the pills intended to block your breasts' growth. You hope it will be as effective as advertised.",
 		warning_label:
 			'<span class="hpi_notice_label">Notice: No side effects were determined during the trials for this drug. Taking more than 1 pill per 24 hours is ineffective</span>',
@@ -361,7 +361,7 @@ setup.pills = [
 	{
 		name: "fertility booster",
 		description:
-			"Each pill contains 50mg of clomiphene citrate, a structural analogue of estrogens. It also acts on your hypothalamus which secretes the hormones necessary to trigger ovulation. In some cases effectively inducing your ovary to release eggs.",
+			"Each pill contains 50mg of clomiphene citrate, a structural analogue of oestrogens. It also acts on your hypothalamus which secretes the hormones necessary to trigger ovulation. In some cases effectively inducing your ovary to release eggs.",
 		onTakeMessage: "You take the pills intended to increase your fertility. You hope it will be as effective as advertised.",
 		warning_label:
 			"Warning: Mild side effects may occur with the prescribed dosage, including those that may mimic the signs of early pregnancy. Severe complications may occur if exceeding the maximum doses per day. If in doubt, please consult your doctor.",
@@ -404,7 +404,7 @@ setup.pills = [
 	{
 		name: "contraceptive",
 		description:
-			"Estroprogestatifs associating 24mg of ethinylestradiol(synthetic estrogen) and 31mg of a synthetic progestin for a near-perfect contraceptive effect.",
+			"Estroprogestatifs associating 24mg of ethinylestradiol(synthetic oestrogen) and 31mg of a synthetic progestin for a near-perfect contraceptive effect.",
 		onTakeMessage: "You take the contraceptive pill. You hope it will be as effective as advertised.",
 		warning_label:
 			"Warning: Mild side effects may occur with the prescribed dosage. Severe complications may occur if exceeding the maximum doses per day. If in doubt, please consult your doctor.",
diff --git a/game/03-JavaScript/jQuery/tooltip.js b/game/03-JavaScript/jQuery/tooltip.js
index ea576edcbf01071254213b851cbf521ee66c032c..3164e93b74ab3d0af1c1a29563f4114e3e5d4939 100644
--- a/game/03-JavaScript/jQuery/tooltip.js
+++ b/game/03-JavaScript/jQuery/tooltip.js
@@ -32,16 +32,17 @@ function initializeTooltips() {
 				maxWidth: 450,
 			};
 
-			$.each(this.attributes, function() {
-                if (this.name.startsWith("tooltip-") && defaultSettings.hasOwnProperty(this.name.substring(8))) {
-                    const key = this.name.substring(8);
-                    let value = this.value;
-                    if (!isNaN(value)) {
-                        value = parseFloat(value);
-                    }
-                    defaultSettings[key] = value;
-                }
-            });
+			$.each(this.attributes, function () {
+				if (!this.name.startsWith("tooltip-")) return;
+				if (!Object.hasOwn(defaultSettings, this.name.substring(8))) return;
+
+				const key = this.name.substring(8);
+				let value = this.value;
+				if (isNaN(value)) return;
+
+				value = parseFloat(value);
+				defaultSettings[key] = value;
+			});
 
 			$(this).tooltip(defaultSettings);
 		});
diff --git a/game/04-Variables/canvasmodel-main.js b/game/04-Variables/canvasmodel-main.js
index bcb53494d2f0df62f985abf0570c9c87ea88b879..285ed00677a3641139f97ab6e21d620268cf1072 100644
--- a/game/04-Variables/canvasmodel-main.js
+++ b/game/04-Variables/canvasmodel-main.js
@@ -830,7 +830,7 @@ Renderer.CanvasModels["main"] = {
 		if (options.worn_handheld_setup.type.includes("rainproof")) {
 			options.handheld_overhead = true;
 			if (options.angel_halo_type === "default") { options.angel_halo_lower = true; }
-		} else if (["balloon", "heart balloon"].includes(options.worn_handheld_setup.name)) {
+		} else if (["balloon", "heart balloon", "paper fan"].includes(options.worn_handheld_setup.name)) {
 			options.handheld_overhead = true;
 			options.angel_halo_lower = false;
 		} else {
@@ -3581,6 +3581,7 @@ function genlayer_clothing_accessory(slot, overrideOptions) {
 		showfn(options) {
 			return options.show_clothes &&
 				options["worn_" + slot] > 0 &&
+				options["worn_" + slot + "_setup"].accImage !== 0 &&
 				options["worn_" + slot + "_setup"].accessory === 1
 		},
 		alphafn(options) {
diff --git a/game/04-Variables/feats.js b/game/04-Variables/feats.js
index 6aafbc9813cdec2480c292ab852d0f9fd76d05d8..1bcde9cddf04780e54ef4c236161752d00a21281 100644
--- a/game/04-Variables/feats.js
+++ b/game/04-Variables/feats.js
@@ -41,7 +41,7 @@ setup.feats = {
 	},
 	"It Belongs in a Museum": {
 		title: "It Belongs in a Museum!",
-		desc: "Find all the artifacts",
+		desc: "Find all the artefacts",
 		difficulty: 3,
 		series: "",
 		filter: ["All", "General"],
@@ -1481,7 +1481,7 @@ setup.feats = {
 	},
 	"Field Work": {
 		title: "Field Work",
-		desc: "Built an archeological field office at the lake.",
+		desc: "Built an archaeological field office at the lake.",
 		difficulty: 1,
 		series: "",
 		filter: ["All", "Discoveries"],
diff --git a/game/04-Variables/shop.js b/game/04-Variables/shop.js
index ab5eb9af330ce4f6ffca509bb563b05a8dfc8f59..f2909086fdc0e0912f364c0e7a9dd261e37eaf2b 100644
--- a/game/04-Variables/shop.js
+++ b/game/04-Variables/shop.js
@@ -130,10 +130,10 @@ setup.shopDetails = {
 		get desc() {
 			return V.transformdisable === "f"
 				? "Protects a specific transformation. Transformations progress and decay at midnight."
-				: "There's something peculiar about this object."
+				: "There's something peculiar about this object.";
 		},
 		get details() {
-			return V.transformdisable === "f" ? "Prevents its associated transformation from decaying." : "Enable transformations to make use of this trait."
+			return V.transformdisable === "f" ? "Prevents its associated transformation from decaying." : "Enable transformations to make use of this trait.";
 		},
 	},
 	shade: {
diff --git a/game/base-clothing/canvasmodel-img.twee b/game/base-clothing/canvasmodel-img.twee
index 84c69fff4ff747bbcd2e58f9fcdb3c6c69b6852d..6450615be9dd6c0c72de32fb7043831bff0d1de5 100644
--- a/game/base-clothing/canvasmodel-img.twee
+++ b/game/base-clothing/canvasmodel-img.twee
@@ -145,17 +145,12 @@ Requires prior <<selectmodel "main">>
 	-->
 
 	<<set _modeloptions.hair_sides_length to $hairlengthstage>>
-	<<for _i to 0; _i lt setup.hairstyles.sides.length; _i++>>
-		<<set _hairstyle to setup.hairstyles.sides[_i]>>
-		<<if _hairstyle.name is $hairtype>>
-			<<if _hairstyle.alt_head_type && _hairstyle.alt_head_type.includes(setup.clothes.head[clothesIndex('head', $worn.head)].head_type)>>
-				<<set _modeloptions.hair_sides_type to _hairstyle.alt>>
-			<<else>>
-				<<set _modeloptions.hair_sides_type to $hairtype>>
-			<</if>>
-			<<break>>
-		<</if>>
-	<</for>>
+	<<set _hairstyle to setup.hairstyles.sides.find(hs => hs.variable is $hairtype)>>
+	<<if _hairstyle.alt_head_type && _hairstyle.alt_head_type.includes(setup.clothes.head[clothesIndex('head', $worn.head)].head_type)>>
+		<<set _modeloptions.hair_sides_type to _hairstyle.alt>>
+	<<else>>
+		<<set _modeloptions.hair_sides_type to $hairtype>>
+	<</if>>
 	<<set _modeloptions.hair_sides_position to $hairposition>>
 	<<set _modeloptions.hair_fringe_length to $fringelengthstage>>
 	<<set _modeloptions.hair_fringe_type to $fringetype>>
diff --git a/game/base-clothing/clothing-lower.js b/game/base-clothing/clothing-lower.js
index 67da080c228effcffc20fd70afee33cbc019b0cc..4ee519328410cac5001b160f04fa09ecc76180ae 100644
--- a/game/base-clothing/clothing-lower.js
+++ b/game/base-clothing/clothing-lower.js
@@ -3393,7 +3393,7 @@ function initLower() {
 			gender: "n",
 			warmth: 40,
 			cost: 0,
-			description: "Soft and cozy.",
+			description: "Soft and cosy.",
 			shop: ["clothing"],
 			accessory: 0,
 			accessory_colour: 0,
diff --git a/game/base-clothing/clothing-under-upper.js b/game/base-clothing/clothing-under-upper.js
index b17dcafd20192116dc99fd7068e6508470a314b9..f9fbdd32f7ffd87b6249d3c52a7e6811068e41f1 100644
--- a/game/base-clothing/clothing-under-upper.js
+++ b/game/base-clothing/clothing-under-upper.js
@@ -81,6 +81,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "bikini_top.png",
@@ -480,6 +481,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "lace_bra.png",
@@ -523,6 +525,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "microkini_top.png",
@@ -566,6 +569,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "plain_bra.png",
@@ -609,6 +613,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "sports_bra.png",
@@ -693,6 +698,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "corset.png",
@@ -740,6 +746,8 @@ function initUnderUpper() {
 			breast_acc_img: 1,
 			cursed: 0,
 			location: 0,
+			mainImage: 0,
+			accImage: 0,
 			iconFile: "striped_bra.png",
 			accIcon: "striped_bra_acc.png",
 		},
@@ -781,6 +789,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "chest_wrap.png",
@@ -1042,6 +1051,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "strapless_bra.png",
@@ -1085,6 +1095,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "school_swim_top.png",
@@ -1129,6 +1140,7 @@ function initUnderUpper() {
 			sleeve_img: 0,
 			breast_img: 1,
 			breast_combat: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "tape.png",
@@ -1171,6 +1183,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "cow_bra.png",
@@ -1346,6 +1359,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "pushup_bra.png",
@@ -1532,6 +1546,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "bunny_leotard.png",
@@ -1575,6 +1590,7 @@ function initUnderUpper() {
 			accessory_colour_options: [],
 			sleeve_img: 0,
 			breast_img: 1,
+			mainImage: 0,
 			cursed: 0,
 			location: 0,
 			iconFile: "bunny_tie_bikini_top.png",
diff --git a/game/base-clothing/clothing-upper.js b/game/base-clothing/clothing-upper.js
index ab73967a8bd897a17cb2222b26851af30d4238b0..d205406871fa2a848243766d88857da283dd8a74 100644
--- a/game/base-clothing/clothing-upper.js
+++ b/game/base-clothing/clothing-upper.js
@@ -817,6 +817,7 @@ function initUpper() {
 			cursed: 0,
 			location: 0,
 			iconFile: "blouse.png",
+			mainImage: 0,
 			accIcon: 0,
 			notuck: 0,
 			pregType: 0,
@@ -3183,6 +3184,7 @@ function initUpper() {
 			breast_acc_img: 1,
 			cursed: 0,
 			location: 0,
+			mainImage: 0,
 			iconFile: "diving_suit.png",
 			accIcon: "diving_suit_acc.png",
 			outfitPrimary: { lower: "diving suit bottom" },
diff --git a/game/base-combat/end.twee b/game/base-combat/end.twee
index 29acbd2b8028c660eac0cbb476afc7a86ba3eb7e..e78598d8bb7ebc1670388b71680fa43024b12fb7 100644
--- a/game/base-combat/end.twee
+++ b/game/base-combat/end.twee
@@ -32,7 +32,7 @@
 				<<transform fox 1>>
 			<</if>>
 			<<stress -10>><<trauma -5>>
-			<span class="lewd">Copulating with your chosen partner fulfills an instinctual desire.</span><<llstress>><<ltrauma>>
+			<span class="lewd">Copulating with your chosen partner fulfils an instinctual desire.</span><<llstress>><<ltrauma>>
 			<<set $_br to true>>
 			<br>
 		<</if>>
diff --git a/game/base-combat/npc-generation.twee b/game/base-combat/npc-generation.twee
index e5b1e97ca02d979fd9b5720bc641337dbc75003b..515491bf12a7342bf30b9e40f6156b8a8eefca5e 100644
--- a/game/base-combat/npc-generation.twee
+++ b/game/base-combat/npc-generation.twee
@@ -177,30 +177,6 @@
 	<<generateNPC 6 t>>
 <</widget>>
 
-<<widget "generatec1">>
-	<<generateNPC 1 t>>
-<</widget>>
-
-<<widget "generatec2">>
-	<<generateNPC 2 t>>
-<</widget>>
-
-<<widget "generatec3">>
-	<<generateNPC 3 t>>
-<</widget>>
-
-<<widget "generatec4">>
-	<<generateNPC 4 t>>
-<</widget>>
-
-<<widget "generatec5">>
-	<<generateNPC 5 t>>
-<</widget>>
-
-<<widget "generatec6">>
-	<<generateNPC 6 t>>
-<</widget>>
-
 <<widget "generatev1">>
 	<<set _generate_victim to 1>>
 	<<generateNPC 1>>
diff --git a/game/base-combat/speech.twee b/game/base-combat/speech.twee
index bf0806efce5bfa08e083860c0e5e905014909de7..7f8946f5b327b41bed8873b541d9be9033d47ba1 100644
--- a/game/base-combat/speech.twee
+++ b/game/base-combat/speech.twee
@@ -4606,7 +4606,7 @@
 					<<if $tentacletrait is 1 and random(1,5) is 1>>
 						<<He>> grins. "I can see it in your eyes. You've been dying for this, haven't you?" <<He>> leans in to whisper in your ear. "Someone like me, filling your every hole with my vines.
 						<<if $speech_attitude is "bratty">>
-							Let me fulfill that wish, little <span class="lewd">witch</span>."
+							Let me fulfil that wish, little <span class="lewd">witch</span>."
 						<<else>>
 							Turning you into my <span class="lewd">prey</span>."
 						<</if>>
@@ -4910,7 +4910,7 @@
 				<<if C.npc.Alex.dom gte 30>>
 					<<set $_text_output to `<<He>> looks at your $_sexToy and grins. "` + [`Now we're getting somewhere.`, `Cute toy. You better know how to use it.`, `Is that the best thing town has to offer?`][random(0,2)] + `"`>>
 				<<elseif C.npc.Alex.dom lte -30>>
-					<<set $_text_output to `<<He>> looks at your $_sexToy and hesitates. "` + [`All right. I trust your judgment.`, `Hope you know how to use that thing.`, `You always know just how to have a good time.`][random(0,2)] + `"`>>
+					<<set $_text_output to `<<He>> looks at your $_sexToy and hesitates. "` + [`All right. I trust your judgement.`, `Hope you know how to use that thing.`, `You always know just how to have a good time.`][random(0,2)] + `"`>>
 				<<else>>
 					<<set $_text_output to `<<He>> looks at your $_sexToy and smiles. "` + [`I like where your head's at.`, `Looks like we're in for a wild ride.`, `So this is what sells in town.`][random(0,2)] + `"`>>
 				<</if>>
diff --git a/game/base-system/overlays/journal.twee b/game/base-system/overlays/journal.twee
index 1ce581f19b8c9873de7c0381643c04ef5f88d035..a48f8c0077c858264023c29a2a99fc08a0e2c13f 100644
--- a/game/base-system/overlays/journal.twee
+++ b/game/base-system/overlays/journal.twee
@@ -146,7 +146,7 @@
 		<span class="gold bold">Reminders</span>
 		<ul style="margin-top:10px;margin-left:-5px;">
 			<<if $temple_spear_mission is 1>>
-				<li>Jordan has tasked you with retrieving an artifact spear. It is said to reside on a mysterious island.
+				<li>Jordan has tasked you with retrieving an artefact spear. It is said to reside on a mysterious island.
 					<<if $temple_spear_mission_winter is undefined>>
 						Jordan mentioned that the historian at the local museum might have more information.
 					<<else>>
diff --git a/game/base-system/pregnancy/events.twee b/game/base-system/pregnancy/events.twee
index d72e0d802b8f151265dd34537cfc1b8a605dc5bf..24d74b9fe283337acab8f5da3f6c48b6277d1b65 100644
--- a/game/base-system/pregnancy/events.twee
+++ b/game/base-system/pregnancy/events.twee
@@ -41,15 +41,15 @@ You shake your head. <<He>> holds open the door for you, and you leave the offic
 	<</if>>
 <</if>>
 <<if $pregnancyStats.parasiteDoctorEvents is 3>>
-	<<link [[Inquire about feeling something large in your stomach (0:10)|Pregnancy Futa Introduction]]>><<pass 10>><<set $firstOption to false>><</link>>
+	<<link [[Enquire about feeling something large in your stomach (0:10)|Pregnancy Futa Introduction]]>><<pass 10>><<set $firstOption to false>><</link>>
 	<br>
 <</if>>
 <<if $pregnancyStats.parasiteDoctorEvents gte 4 and ($sexStats.anus.pregnancy.motherStatus is 2 or ($sexStats.vagina.pregnancy.motherStatus is 2 and !$worn.genitals.type.includes("hidden")))>>
-	<<link [[Inquire about parasite hermaphrodite removal (0:30)|Remove Futa Pregnancy]]>><<pass 30>><<set $futaCheck to true>><<set $firstOption to false>><</link>>
+	<<link [[Enquire about parasite hermaphrodite removal (0:30)|Remove Futa Pregnancy]]>><<pass 30>><<set $futaCheck to true>><<set $firstOption to false>><</link>>
 	<br>
 <</if>>
 <<if $pregnancyStats.parasiteTypesSeen.length gte 4 and $pregnancyStats.parasiteBook is 1>>
-	<<link [[Inquire about information on parasites (0:05)|Harper Parasite Book]]>><<pass 5>><<set $firstOption to false>><</link>>
+	<<link [[Enquire about information on parasites (0:05)|Harper Parasite Book]]>><<pass 5>><<set $firstOption to false>><</link>>
 	<br>
 <</if>>
 
diff --git a/game/base-system/pregnancy/pregnancy.twee b/game/base-system/pregnancy/pregnancy.twee
index 854e5a47709d5f6f8a4d1aee497b7198742d19bb..ab18c5d72ca0af9dc706bd080a3f8b1cc0efd168 100644
--- a/game/base-system/pregnancy/pregnancy.twee
+++ b/game/base-system/pregnancy/pregnancy.twee
@@ -455,7 +455,7 @@
 			<<case "meatCraving">>
 				<<set $_text_output to `You awaken to a strange craving ${V.wolfgirl >= 2 ? "of digging your fangs into" : "for"} something meaty.`>>
 			<<case "foodCraving">>
-				<<set $_text_output to `You awaken to a strange craving for something ${["sweet","spicy","sour","savory","bitter"][random(0,4)]}.`>>
+				<<set $_text_output to `You awaken to a strange craving for something ${["sweet","spicy","sour","savoury","bitter"][random(0,4)]}.`>>
 			<<case "headache">>
 				<<set $_text_output to "You wake up to your head throbbing. You're not sure what brought on this headache, but it eventually passes.">>
 			<<case "sensitiveBreasts">>
@@ -562,7 +562,7 @@
 			<<case "meatCraving">>
 				<<set $_text_output to `You have a sudden, strange craving ${V.wolfgirl >= 2 ? "of digging your fangs into" : "for"} something meaty.`>>
 			<<case "foodCraving">>
-				<<set $_text_output to `You have a sudden, strange craving for something ${["sweet","spicy","sour","savory","bitter"][random(0,4)]}.`>>
+				<<set $_text_output to `You have a sudden, strange craving for something ${["sweet","spicy","sour","savoury","bitter"][random(0,4)]}.`>>
 			<<case "cramping">>
 				<<set $_text_output to `You feel some cramping around the lower part of your stomach.<<stress 5>><<gstress>><<pain 5>><<gpain>>`>>
 			<<case "bloated">>
@@ -992,7 +992,7 @@
 			<<case "pound">>
 				<<run delete $pound.door>>
 				<<endevent>>
-				Staring out from between the bars, you shift uncomfortably. Greater levels of wetness pool beneath you onto the concrete. You're going into labor.
+				Staring out from between the bars, you shift uncomfortably. Greater levels of wetness pool beneath you onto the concrete. You're going into labour.
 				<br><br>
 
 				You hear whines from the kennels next to yours. The other <<pound_text>> can smell what is happening.
@@ -1049,7 +1049,7 @@
 			<<case "office">>
 			<<case "island">>
 				<<endevent>>
-				You're going into labor.
+				You're going into labour.
 				<br><br>
 				A spasm of pain wracks your body, and you cry out.
 				<br><br>
@@ -1057,7 +1057,7 @@
 				Figures emerge from the trees, weapons held ready. They lower them when they see your state, and their motions become panicked.
 				<br><br>
 				<<if $islander_language gte 100>>
-					"I think <<pshe>> going into labor,"
+					"I think <<pshe>> going into labour,"
 					<br>
 					"Fuck! You're right!"
 					<br>
@@ -1103,7 +1103,7 @@
 					Your vision quickly fades, and when it returns, you feel as though time has passed.
 					<br><br>
 				<<else>>
-					You snap awake in the parlor.
+					You snap awake in the parlour.
 				<</if>>
 				<<if $hookah_state is 1>>
 					<<loadNPC 0 "hookah">><<person1>>
diff --git a/game/base-system/sleep.twee b/game/base-system/sleep.twee
index c3d1e843a766bccda956ed390889bb3deb2130dd..aea1901b4b3ef83d3d0fc144c70fedf243aff041 100644
--- a/game/base-system/sleep.twee
+++ b/game/base-system/sleep.twee
@@ -306,7 +306,7 @@
 		<br><br>
 	<</if>>
 	<<if !$sleepWraith and $bedGuest and $transformationParts.traits.mateForLife isnot "disabled" and isLoveInterest($bedGuest)>>
-		<span class="green">Sleeping with your chosen partner fulfills an instinctual desire.</span> <<lstress>><<ltrauma>><<garousal>>
+		<span class="green">Sleeping with your chosen partner fulfils an instinctual desire.</span> <<lstress>><<ltrauma>><<garousal>>
 		<br><br>
 	<</if>>
 	<<if $scienceproject is "ongoing" and $sciencephallusknown isnot 1 and $promiscuity gte 35>>
diff --git a/game/base-system/text.twee b/game/base-system/text.twee
index d3dffc9f621b63feac8e5188c83e8b2f486853ea..2b15762998dc5be47033713172d1b224c3891d7e 100644
--- a/game/base-system/text.twee
+++ b/game/base-system/text.twee
@@ -6780,7 +6780,7 @@
 	<<elseif _vagina_lube_amount gte 3>>
 		<span class="purple">fair</span> amount
 	<<elseif _vagina_lube_amount gte 2>>
-		<span class="purple">meager</span> amount
+		<span class="purple">meagre</span> amount
 	<<else>>
 		<span class="purple">paltry</span> amount
 	<</if>>
@@ -6796,7 +6796,7 @@
 	<<elseif _anus_lube_amount gte 3>>
 		<span class="purple">fair</span> amount
 	<<elseif _anus_lube_amount gte 2>>
-		<span class="purple">meager</span> amount
+		<span class="purple">meagre</span> amount
 	<<else>>
 		<span class="purple">paltry</span> amount
 	<</if>>
@@ -6812,7 +6812,7 @@
 	<<elseif _penis_lube_amount gte 3>>
 		<span class="purple">fair</span> amount
 	<<elseif _penis_lube_amount gte 2>>
-		<span class="purple">meager</span> amount
+		<span class="purple">meagre</span> amount
 	<<else>>
 		<span class="purple">paltry</span> amount
 	<</if>>
diff --git a/game/base-system/time/time.js b/game/base-system/time/time.js
index f73a0296e2b71e6b4661190e15a7e68829a9c419..5e4121d450fb3c734d31489f820f87bfe043bd19 100644
--- a/game/base-system/time/time.js
+++ b/game/base-system/time/time.js
@@ -335,11 +335,23 @@ const Time = (() => {
 		},
 		get dayState() {
 			const hour = this.hour;
-			return hour < 6 || hour >= 21 ? "night" : hour >= 18 ? "dusk" : hour >= 9 ? "day" : "dawn";
+			if (hour < 6 || hour >= 21) {
+				return "night";
+			}
+			if (hour >= 18) {
+				return "dusk";
+			}
+			return hour >= 9 ? "day" : "dawn";
 		},
 		get nightState() {
 			const hour = this.hour;
-			return hour < 6 ? "morning" : hour >= 9 ? "evening" : undefined;
+			if (hour < 6) {
+				return "morning";
+			}
+			if (hour >= 9) {
+				return "evening";
+			}
+			return undefined;
 		},
 		get nextSchoolTermStartDate() {
 			return getNextSchoolTermStartDate(currentDate);
@@ -826,6 +838,9 @@ function dayPassed() {
 		delete V.pirate_attack;
 	}
 
+	/* Set flag to determine Kylar's position at lunch */
+	V.daily.kylar.libraryStalk = rollKylarLibraryStalkFlag();
+
 	return fragment;
 }
 
diff --git a/game/base-system/widgets.twee b/game/base-system/widgets.twee
index 30905921046d8d91f479141982f321d0367054b4..14eba968e2821a1246c8581bb17f91d2ed011e92 100644
--- a/game/base-system/widgets.twee
+++ b/game/base-system/widgets.twee
@@ -3954,7 +3954,7 @@
 
 <<widget "new_npc_pillory">>
 	<<if not _args[0]>>
-		<<if $rng gte 20>><<generate1>><<else>><<generatec1>><</if>>
+		<<if $rng gte 20>><<generate1>><<else>><<generatey1>><</if>>
 		<<set _already_served to random(0,2)>>
 	<<else>>
 		<<set _already_served to 0>>
diff --git a/game/overworld-forest/loc-asylum/events.twee b/game/overworld-forest/loc-asylum/events.twee
index 375afba8d5d6c208be26c08ecd646a1e4377e708..722c913997b2ebdea2a4a74de3d1bec84bc914c1 100644
--- a/game/overworld-forest/loc-asylum/events.twee
+++ b/game/overworld-forest/loc-asylum/events.twee
@@ -941,7 +941,7 @@ You tell them about what you saw, but find yourself unable to recall the finer d
 <br>
 
 :: Asylum Pill Quiet
-You shake your head. They all look skeptical, but Harper gives you a patient smile.
+You shake your head. They all look sceptical, but Harper gives you a patient smile.
 <br><br>
 "We'll keep an eye on <<phim>>," Harper says. "I'll send for the next patient." <<He>> undoes the straps on the chair. "Thank you for cooperating. Be well."
 <br><br>
diff --git a/game/overworld-forest/loc-cabin/hunt.twee b/game/overworld-forest/loc-cabin/hunt.twee
index 428c00f347edcf346b41dbc029eb5d1c9ad53db4..6e8819158ee8e295cc67bde50c5af8dd06d97900 100644
--- a/game/overworld-forest/loc-cabin/hunt.twee
+++ b/game/overworld-forest/loc-cabin/hunt.twee
@@ -526,7 +526,7 @@ You walk into the forest, keeping close behind Eden.
 "Turn around," <<he>> orders.
 <br><br>
 
-You turn around, as instructed. A loud crack erupts behind you, shattering the tranquility of the forest and signaling you to start running.
+You turn around, as instructed. A loud crack erupts behind you, shattering the tranquility of the forest and signalling you to start running.
 <br><br>
 
 <<if !$edenPrey>><<set $edenPrey to 1>><</if>>
@@ -559,7 +559,7 @@ You turn around, as instructed. A loud crack erupts behind you, shattering the t
 	"Turn around," <<he>> orders.
 	<br><br>
 
-	You turn around, as instructed. A loud crack erupts behind you, shattering the tranquility of the forest and signaling you to start running.
+	You turn around, as instructed. A loud crack erupts behind you, shattering the tranquility of the forest and signalling you to start running.
 	<br><br>
 
 	<<if !$edenPrey>><<set $edenPrey to 1>><</if>>
diff --git a/game/overworld-forest/loc-cabin/main.twee b/game/overworld-forest/loc-cabin/main.twee
index 375e4dd8a7aee26b57b9d6fe611d159c89bcebb1..4ee68fa063598420e65d140246783dcb327e7ff2 100644
--- a/game/overworld-forest/loc-cabin/main.twee
+++ b/game/overworld-forest/loc-cabin/main.twee
@@ -967,7 +967,7 @@ Without a word, Eden picks up a knife and slashes your bindings.
 <<effects>>
 
 You set the new rug by the fireplace and arrange the pillows around it. When you're done, you step back and take a look at your work.
-The setup looks quite cozy, and you feel a sense of accomplishment. You're sure that Eden would be satisfied with your choice.
+The setup looks quite cosy, and you feel a sense of accomplishment. You're sure that Eden would be satisfied with your choice.
 <br><br>
 
 <<link [[Next|Eden Cabin]]>><<endevent>><</link>>
@@ -1585,7 +1585,7 @@ Eden leads you back to the safety of <<his>> cabin.
 	Eden narrows <<his>> eyes, looking annoyed. "There's nothing wrong with my cabin."
 	<br><br>
 
-	<<He>> turns away from you, signaling that the conversation is over.
+	<<He>> turns away from you, signalling that the conversation is over.
 	<br><br>
 
 	<i>If <<he>> liked you more <<he>> might be more amenable to your request.</i>
diff --git a/game/overworld-forest/loc-cabin/punishment.twee b/game/overworld-forest/loc-cabin/punishment.twee
index 9b3c5b7a9b205bcec559cc688d0d1f88b4b6d9ea..06bd7f577c2596871af2e81f73af802cedb12bdd 100644
--- a/game/overworld-forest/loc-cabin/punishment.twee
+++ b/game/overworld-forest/loc-cabin/punishment.twee
@@ -588,7 +588,7 @@ You are locked in a cage in Eden's cabin. It's small and cramped, impossible to
 		<<elseif $phase is 1>>
 			The door to the cabin swings open. Eden stomps over to the cage and unlocks it.
 		<</if>>
-		"You have duties to fulfill."
+		"You have duties to fulfil."
 		<<He>> <<npcUndressText C.npc.Eden "lower" "self">>.
 	<</if>>
 	<br><br>
diff --git a/game/overworld-forest/loc-forest/events.twee b/game/overworld-forest/loc-forest/events.twee
index 667528116bd2450153f199e2fcb59ffdc43fc938..e109bde7f70e108806cb02a3e3d5e343b9821c9f 100644
--- a/game/overworld-forest/loc-forest/events.twee
+++ b/game/overworld-forest/loc-forest/events.twee
@@ -3734,9 +3734,9 @@ You hide and wait, watching the nest intently.
 			<<if $forest_nest.eggs lte 0>><span class="purple">There don't seem to be many left</span>.<</if>>
 		<<else>>
 			<<if $monster is 1>>
-				<<bHe>> grabs a handful, puts one in <<bhis>> mouth, and bounds a few meters away to make a pile.
+				<<bHe>> grabs a handful, puts one in <<bhis>> mouth, and bounds a few metres away to make a pile.
 			<<else>>
-				<<bHe>> grabs one in <<bhis>> mouth and bounds a few meters away to start making a pile.
+				<<bHe>> grabs one in <<bhis>> mouth and bounds a few metres away to start making a pile.
 			<</if>>
 		<</if>>
 	<</if>>
@@ -5389,7 +5389,7 @@ You waste no time. You dash out from the brush. The snake turns to you, the much
 	<<if $worn.under_lower.integrity gte 1>>
 		Several students move behind you and force you to the ground while the other teens grab your arms. You expect them to try stripping you, or worse, but instead you feel two pairs of hands <<if setup.clothes.lower[clothesIndex('lower', $worn.lower)].skirt is 1>>reach up your skirt <<else>>dive down your waistband<</if>> and clamp something metallic to the sides of your $worn.under_lower.name before letting go of you.
 		<br><br>
-		You stand back up, but before you have time to react, some of the students begin pulling on ropes that loop over branches above you and connect to your $worn.under_lower.name. They start to tear slightly as your classmates hoist you a meter off the ground, pulling the fabric tightly between your ass cheeks and against your <<genitals>>. It hurts but is slightly arousing as well. <<ggstress>><<stress 12>><<garousal>><<arousal 100>><<gpain>><<pain 10>>
+		You stand back up, but before you have time to react, some of the students begin pulling on ropes that loop over branches above you and connect to your $worn.under_lower.name. They start to tear slightly as your classmates hoist you a metre off the ground, pulling the fabric tightly between your ass cheeks and against your <<genitals>>. It hurts but is slightly arousing as well. <<ggstress>><<stress 12>><<garousal>><<arousal 100>><<gpain>><<pain 10>>
 		<br><br>
 		<<if $worn.lower.name isnot 'naked'>>
 			The teens gather in a circle around you to admire their handiwork. "I think something is missing," the <<person>> says and approaches you.
diff --git a/game/overworld-forest/loc-lake/events.twee b/game/overworld-forest/loc-lake/events.twee
index 3d82a1e03622f24c46f7ac39d6a341c2006a697d..67895c02309bbc8e90e488ad7c0d73e7225e63cb 100644
--- a/game/overworld-forest/loc-lake/events.twee
+++ b/game/overworld-forest/loc-lake/events.twee
@@ -365,7 +365,7 @@ You would have never thought this would work. You could sell this gold bar for q
 :: Lake Mermaid
 
 <<set $outside to 1>><<set $location to "lake">><<effects>><<lakeeffects>>
-<<generatec1>><<person1>>
+<<generatey1>><<person1>>
 You wake up unable to move. You're up to your neck in sand.
 <br><br>
 
diff --git a/game/overworld-forest/loc-lake/ivory/widgets.twee b/game/overworld-forest/loc-lake/ivory/widgets.twee
index 6e00e04ca509af41687684aaf4920a77b50a7ba4..153ece15d7b56a1d21d07fec08f3a431fa541bf3 100644
--- a/game/overworld-forest/loc-lake/ivory/widgets.twee
+++ b/game/overworld-forest/loc-lake/ivory/widgets.twee
@@ -541,7 +541,7 @@
 			<<run _linePool.pushUnique(
 				"Tormentor.",
 				"Drown in smoke. Drown in flame.",
-				"A suit of armor made of bodies. They're not here now."
+				"A suit of armour made of bodies. They're not here now."
 			)>>
 			<<if $whitneyrescued>>
 				<<run _linePool.pushUnique("Betrayed by your worst enemy. Do you love <<phim>>?")>>
@@ -924,7 +924,7 @@
 			<<run _linePool.pushUnique(
 				"Sapphire and brimstone.",
 				"All the world's to defile.",
-				"You wear a mask. Your face molds to fit it.",
+				"You wear a mask. Your face moulds to fit it.",
 				"You think you've found the bottom. You've barely breached the surface."
 			)>>
 			<<if $spear_vessel is "held">>
diff --git a/game/overworld-forest/loc-lake/main.twee b/game/overworld-forest/loc-lake/main.twee
index 2507f7bf7d7317000ba003501229c587652d12da..4c1e2a4a7edbba3bd79b4e6af22081f6536fa96e 100644
--- a/game/overworld-forest/loc-lake/main.twee
+++ b/game/overworld-forest/loc-lake/main.twee
@@ -183,7 +183,7 @@
 			<br>
 		<</if>>
 		<<if $town_projects.diving gte 4>>
-			<<lakeicon "field office">><<link [[Archeological field office (0:02)|Lake Office]]>><<pass 2>><</link>>
+			<<lakeicon "field office">><<link [[archaeological field office (0:02)|Lake Office]]>><<pass 2>><</link>>
 			<br>
 		<</if>>
 		<<if Time.season isnot "winter" and !isBloodmoon()>>
@@ -257,7 +257,7 @@ Winter leads you into the tent. It's spacious. A long table runs down the length
 :: Lake Office
 <<set $outside to 0>><<effects>>
 
-You are in the archeological office at the lake. Green tent walls surround a spacious interior.
+You are in the archaeological office at the lake. Green tent walls surround a spacious interior.
 <<if Time.schoolDay and Time.hour gte 16 and Time.hour lte 20 or !Time.schoolDay and Time.hour gte 6 and Time.hour lte 20>>
 	<<npc Winter>><<person1>>
 	Winter sits in front of a table, engrossed in study.
diff --git a/game/overworld-forest/loc-lake/widgets.twee b/game/overworld-forest/loc-lake/widgets.twee
index 337c2fd4f5be50ecd1504fcb979130eb753143b3..3292ca6c1f05b83badb6887837ca71c960700943 100644
--- a/game/overworld-forest/loc-lake/widgets.twee
+++ b/game/overworld-forest/loc-lake/widgets.twee
@@ -605,7 +605,7 @@
 	At <<his>> side, a <<person2>><<person>> is deep in a phone call. <<He>> mentions a Halloween party.
 	<br><br>
 
-	<<link [[Inquire|Lake Halloween Invite Inquire]]>><</link>>
+	<<link [[Enquire|Lake Halloween Invite Inquire]]>><</link>>
 	<br>
 	<<link [[Ignore|Lake Halloween Invite Ignore]]>><</link>>
 	<br>
diff --git a/game/overworld-forest/loc-tentacle-world/forest.twee b/game/overworld-forest/loc-tentacle-world/forest.twee
index f291c78813c9410edc5979f4a0f8b8d17e40f22b..5f029dd1ebe4b07a8e7699eeca80c7184cbd7442 100644
--- a/game/overworld-forest/loc-tentacle-world/forest.twee
+++ b/game/overworld-forest/loc-tentacle-world/forest.twee
@@ -1198,7 +1198,7 @@ You enter the tunnel, bathed in purple light. Other corridors lead away from thi
     <<tentacle_forest_orgasm_scene>>
 <<else>>
     <<if $analdisable is "f">>
-        <<link [[Decipher (0:15)|Tentacle Forest Anal]]>><<tentacle_forest_pass 15>><</link>><<note "+ Anal Skill?" "blue">>
+        <<link [[Decypher (0:15)|Tentacle Forest Anal]]>><<tentacle_forest_pass 15>><</link>><<note "+ Anal Skill?" "blue">>
         <br>
     <</if>>
     <<link [[Return to arrival point|Tentacle Forest]]>><</link>>
diff --git a/game/overworld-forest/loc-wolfpack/events.twee b/game/overworld-forest/loc-wolfpack/events.twee
index 135e1874ddc8f1888fbddcdcce81a0523c3bd00d..c58eb282cc6a6c0261d42f81d1e299346adea2f5 100644
--- a/game/overworld-forest/loc-wolfpack/events.twee
+++ b/game/overworld-forest/loc-wolfpack/events.twee
@@ -850,7 +850,7 @@ One of the hunters, a <<beasttype>>,
 	<br>
 	<<link [[Win by stamina|Wolf Cave Spar 2]]>><<set $phase to 1>><</link>><<athleticsdifficulty 200 1000>>
 	<br>
-	<<link [["Outmaneuver " + $NPCList[0].pronouns.him|Wolf Cave Spar 2]]>><<set $phase to 2>><</link>><<dancedifficulty 200 1000>>
+	<<link [["Outmanoeuvre " + $NPCList[0].pronouns.him|Wolf Cave Spar 2]]>><<set $phase to 2>><</link>><<dancedifficulty 200 1000>>
 	<br>
 <</if>>
 
@@ -1079,4 +1079,4 @@ The situation is funny enough that it makes you laugh. Some of the tension aggra
 You tentatively pet the rabbit. It shivers under your touch but does not recoil. You spend some time with your gift before asking the Black Wolf to take it back. Sadly, you do not think taking in a rabbit pet among a wolf pack could end without tragedy. It's better to set it free.<<ltrauma>><<trauma -4>>
 <br><br>
 
-<<link [[Next|Wolf Cave Clearing]]>><<endevent>><</link>>
\ No newline at end of file
+<<link [[Next|Wolf Cave Clearing]]>><<endevent>><</link>>
diff --git a/game/overworld-forest/loc-wolfpack/halloween.twee b/game/overworld-forest/loc-wolfpack/halloween.twee
index 58fe929f26ff87f596aad15da2007cf4c9a2a9dd..7005e5fb9d4377f12b3bb403a3dde4d296f86526 100644
--- a/game/overworld-forest/loc-wolfpack/halloween.twee
+++ b/game/overworld-forest/loc-wolfpack/halloween.twee
@@ -77,7 +77,7 @@ You join the group of <<wolf_cave_plural>>.
 
 As the party prepares to leave, you spot a large looming figure appear from behind the bushes. It's the Black Dog.
 <<if $monster is 1>>
-	"If going after humans, should let me follow," <<bhe 2>> declares. "Saved from them once, allow to return favor." A hint of apprehension betrays <<bhis 2>> seemingly determined attitude.
+	"If going after humans, should let me follow," <<bhe 2>> declares. "Saved from them once, allow to return favour." A hint of apprehension betrays <<bhis 2>> seemingly determined attitude.
 <<else>>
 	You wonder if the dog may feel an odd sense of gratitude towards you for saving <<bhim 2>> from the pound. It may prove advantageous to have more help during the expedition.
 <</if>>
@@ -101,7 +101,7 @@ As the party prepares to leave, you spot a large looming figure appear from behi
 	<<set $blackDog to true>>
 	You nod at the Black Dog, prompting <<bhim 2>> to join the party. "Have dealt with humans before, know what pack will face," <<bhe 2>> comments.
 <<elseif $phase is 2>>
-	You reach out to the Black Dog, signaling <<bhim 2>> to stay. The dog gives you a worried look, but nods in response. You gather the rest of the <<wolf_cave_plural>> and venture out.
+	You reach out to the Black Dog, signalling <<bhim 2>> to stay. The dog gives you a worried look, but nods in response. You gather the rest of the <<wolf_cave_plural>> and venture out.
 <</if>>
 <br><br>
 
@@ -154,7 +154,7 @@ You creep around the unaware partygoers, stepping out of the bushes to meet them
 	<<elseif $speech_attitude is "bratty">>
 		"You fuckers never should have come here," you spit. "We're pissed now, and we want payback!"
 	<<else>>
-		"Attacking a defenseless animal was a huge mistake," you say. "We're here to get even!"
+		"Attacking a defenceless animal was a huge mistake," you say. "We're here to get even!"
 	<</if>>
 	<br><br>
 
@@ -272,7 +272,7 @@ You yell at the <<wolf_cave_plural>>, telling them to leave the three alone. The
 			<<if $monster is 1>>
 				The Black Dog gives you a slight smile of approval as <<bhe 2>> leaves. "Glad friend showed mercy tonight," <<bhe 2>> says. "Should never punish violence with more violence."
 			<<else>>
-				The Black Dog wags <<bhis 2>> tail happily in approval. Could <<bhe 2>> have felt pity for the teens, given their defenseless position?
+				The Black Dog wags <<bhis 2>> tail happily in approval. Could <<bhe 2>> have felt pity for the teens, given their defenceless position?
 			<</if>>
 			<br><br>
 		<</if>>
@@ -432,4 +432,4 @@ You yell at the <<wolf_cave_plural>>, telling them to leave the three alone. The
 	<<endcombat>><<clearNPC "halloween_lake">>
 
 	<<destinationwolfcave>>
-<</if>>
\ No newline at end of file
+<</if>>
diff --git a/game/overworld-forest/loc-wolfpack/introduction.twee b/game/overworld-forest/loc-wolfpack/introduction.twee
index 9f7c41df8e0f9157979f0d9d7d9eb255cf303ccc..07505296df6b2008d8d2ea85e7b59118836a2826 100644
--- a/game/overworld-forest/loc-wolfpack/introduction.twee
+++ b/game/overworld-forest/loc-wolfpack/introduction.twee
@@ -109,7 +109,7 @@
 <<if $eventskip is 0>>
 	<<eventwolfcave>>
 <<else>>
-	The <<wolf_cave_plural>> are blocking your way out of the cave. A draft blows from the back.
+	The <<wolf_cave_plural>> are blocking your way out of the cave. A draught blows from the back.
 	<br><br>
 	<<wolfcaveicon "sleep">><<link [[Rest (2:00)|Forest Wolf Cave Wait]]>><<set $tiredness -= 480>><<pass 2 hours>><</link>>
 	<br>
@@ -267,9 +267,9 @@ You decide not to risk it. You wait at the back of the cave. The pack soon retur
 <<elseif $wolfcavedig gte 9>>
 	You think you hear rushing water as you move the rocks out of the way. Not far to go now.
 <<elseif $wolfcavedig gte 6>>
-	You move some of the rocks out of the way. The draft becomes stronger.
+	You move some of the rocks out of the way. The draught becomes stronger.
 <<elseif $wolfcavedig gte 4>>
-	You move some of the rocks out of the way. You think you feel the draft become stronger.
+	You move some of the rocks out of the way. You think you feel the draught become stronger.
 <<else>>
 	You move some of the rocks in the way, but there's still much to do.
 <</if>>
@@ -326,7 +326,7 @@ You decide not to risk it. You wait at the back of the cave. The pack soon retur
 :: Forest Wolf Cave Examine
 <<set $outside to 0>><<set $location to "wolf_cave">><<effects>>
 
-The feel around the darkness at the back of the cave, looking for the source of the draft. The air feels like its coming from behind a pile of loose rocks.
+The feel around the darkness at the back of the cave, looking for the source of the draught. The air feels like its coming from behind a pile of loose rocks.
 <br><br>
 
 <<if $syndromewolves gte 1>>
diff --git a/game/overworld-forest/loc-wolfpack/pregnancyEvents.twee b/game/overworld-forest/loc-wolfpack/pregnancyEvents.twee
index 8c15e0d08351c016e030bd1beb17a965798ccf41..b9b0f20532983672808afa7a05aee5df411dd699 100644
--- a/game/overworld-forest/loc-wolfpack/pregnancyEvents.twee
+++ b/game/overworld-forest/loc-wolfpack/pregnancyEvents.twee
@@ -160,7 +160,7 @@
 			Feeling tired, you take a seat near a lonely stump. A <<beasttype>> joins you soon after. <<bHe>> lays down next to you.
 			<br><br>
 
-			"<<pPackbrother>> looking to nap as well?" <<bhe>> asks. The <<beasttype>> tries to relax, but something seems to trouble <<bhim>>. "Didn't want to say before, but pack is uneasy," <<bhe>> claims. "<<pPackbrother>> is one of us, but pack cannot care for human cub." Most of the <<wolf_cave_plural>> must have realized you are pregnant, and that you are not waiting for a pup.
+			"<<pPackbrother>> looking to nap as well?" <<bhe>> asks. The <<beasttype>> tries to relax, but something seems to trouble <<bhim>>. "Didn't want to say before, but pack is uneasy," <<bhe>> claims. "<<pPackbrother>> is one of us, but pack cannot care for human cub." Most of the <<wolf_cave_plural>> must have realised you are pregnant, and that you are not waiting for a pup.
 			<br><br>
 
 			"Allowing human cub here is not safe. Not for human or pack." The <<beasttype>> holds your arm in <<bhis>> mouth gently. <<bHe>> takes you out of the cave and towards the town. <<bHe>> releases you, now simply leading the way for you to follow.
@@ -172,7 +172,7 @@
 			Feeling tired, you take a seat near a lonely stump. A <<beasttype>> joins you soon after. <<bHe>> lays down next to you. The <<beasttype>> rests by your side, but something seems to have <<bhim>> upset. The <<beasttype>> stands up and gently nudges your belly, <<bhis>> ear drops and <<bhe>> whimpers.
 			<br><br>
 
-			The pack must have somehow realized by now that you are pregnant, and that they shouldn't be expecting a new wolf to join their ranks. This is no place to raise a baby. The <<beasttype>> holds your wrist gently in <<bhis>> mouth, leading you away from the cave.
+			The pack must have somehow realised by now that you are pregnant, and that they shouldn't be expecting a new wolf to join their ranks. This is no place to raise a baby. The <<beasttype>> holds your wrist gently in <<bhis>> mouth, leading you away from the cave.
 			<br><br>
 
 			You traverse the woods together, until you make it to the edge of town. The Nightingale street hospital can be seen beyond the trees. The <<beasttype>> nudges you in the direction of the hospital, watching you leave before making <<bhis>> departure.
@@ -190,7 +190,7 @@
 			The <<beasttype>> growls in fury. <<bHe>> bites on your wrist hard, pulling you away from the cave with terrifying strength. You follow <<bhis>> pull to alleviate some of the pain. The <<beasttype>> takes you through the forests and into the edge where the woods meet the town, the Nightingale street hospital can be seen through the trees. <<bHe>> lets go.
 			<br><br>
 
-			"<<pPackbrother>> should be ashamed, humans belong with humans!" The <<beasttype>> says as <<bhe>> releases you. "Don't care if <<ppackbrother>> is Black Wolf's favorite, will not allow <<ppackbrother>> to endanger pack." <<bHe>> declares, before turning away and heading back into the forest.
+			"<<pPackbrother>> should be ashamed, humans belong with humans!" The <<beasttype>> says as <<bhe>> releases you. "Don't care if <<ppackbrother>> is Black Wolf's favourite, will not allow <<ppackbrother>> to endanger pack." <<bHe>> declares, before turning away and heading back into the forest.
 			<br><br>
 		<<else>>
 			Feeling tired, you take a seat near a lonely stump. You spot a <<beasttype>> marching angrily towards you.
@@ -224,7 +224,7 @@
 			Feeling tired, you take a seat near a lonely stump. You join a crestfallen <<beasttype>> resting alone. <<bHe>> whimpers, <<bhis>> gaze lingering on your belly. The pack must have figured out by now that you are awaiting a baby, not a wolf cub.
 			<br><br>
 
-			Despite your differences with the pack, you realize that a human baby would make things more difficult and dangerous for everyone. The <<beasttype>> stands up and nudges you from behind, leading you away from the cave.
+			Despite your differences with the pack, you realise that a human baby would make things more difficult and dangerous for everyone. The <<beasttype>> stands up and nudges you from behind, leading you away from the cave.
 			<br><br>
 
 			You walk through the woods together, until you make it to the edge of town. The Nightingale street hospital can be seen at the distance. You turn to pat the <<beasttype>> goodbye, but the animal steps back, afraid from your touch. <<bHe>> darts away and disappears into the bushes.
diff --git a/game/overworld-forest/loc-wolfpack/wolf.twee b/game/overworld-forest/loc-wolfpack/wolf.twee
index 2964bc23e20e4ce15888a932e472657b1c5c8a8a..851d68f1e1ba4679b7e0a3a575170ea2b0aa6be4 100644
--- a/game/overworld-forest/loc-wolfpack/wolf.twee
+++ b/game/overworld-forest/loc-wolfpack/wolf.twee
@@ -110,7 +110,7 @@
 You sit beside the Black Wolf and look in the distance.
 <br><br>
 
-Before long you find yourself snuggling against <<bhis>> cozy black fur.
+Before long you find yourself snuggling against <<bhis>> cosy black fur.
 <br><br>
 
 In this serene moment, all that exists in your mind is you, the warmth of your companion, and the endless forest stretching towards the skyline.
diff --git a/game/overworld-plains/loc-estate/cards.twee b/game/overworld-plains/loc-estate/cards.twee
index 196495ab83b2aadc830547d2de0ae25836afbd94..7a4123e9ea7d85f0d5f4969f442af47809ce6038 100644
--- a/game/overworld-plains/loc-estate/cards.twee
+++ b/game/overworld-plains/loc-estate/cards.twee
@@ -191,7 +191,7 @@ Wren lets out a light chuckle before turning to <<his>> friends. You can hear th
 <</if>>
 
 <br><br>
-"We can add some money into the mix, on top of the favors and the clothes. My friends over here also wouldn't mind to throw in some extra for the eye candy, isn't that right?" Wren says, turning to look at <<his>> goons.
+"We can add some money into the mix, on top of the favours and the clothes. My friends over here also wouldn't mind to throw in some extra for the eye candy, isn't that right?" Wren says, turning to look at <<his>> goons.
 <br><br>
 
 The goons look up and down your body, and you don't hear any objections.
@@ -210,7 +210,7 @@ The goons look up and down your body, and you don't hear any objections.
 
 "Whatever you bet, I will match, and my friends will throw in some extra. We'll ante up before the game, and we'll bet hand-to-hand, before the cards are dealt," Wren says.<br><br>
 
-"Of course, you still want the favors, so I still want the clothes. We're just adding a bit of money to the mix. Sound good?" Wren asks.
+"Of course, you still want the favours, so I still want the clothes. We're just adding a bit of money to the mix. Sound good?" Wren asks.
 <br><br>
 
 <<link [[Accept|Estate Cards Accept Betting]]>><</link>>
@@ -875,7 +875,7 @@ What do you ask?
 		<br>
 	<<elseif _favoursRemaining is 1>>
 		<!-- if this is the very last favour remaining, but daring is low - we let the player know about this option,
-		     so that they realize they've mismanaged the daring and need to increase it again so that they can get all favours
+		     so that they realise they've mismanaged the daring and need to increase it again so that they can get all favours
 			 we do not show this option if they haven't gotten all other favours first, though
 		-->
 		<span class="blue">Start a fire: More daring required.</span>
diff --git a/game/overworld-plains/loc-estate/cards_widgets.twee b/game/overworld-plains/loc-estate/cards_widgets.twee
index fd9db9f342989278bc7e95cde554b9bbfc6bffc6..a030c5b679cdf02f6633a5e78b6f32541589569e 100644
--- a/game/overworld-plains/loc-estate/cards_widgets.twee
+++ b/game/overworld-plains/loc-estate/cards_widgets.twee
@@ -83,7 +83,7 @@ End conditions
    Bets: allowed to take the pot
    End Location: Estate
    Clothes: allowed to buy back (all states)
-   Reason: Wren realizes they've done a ton of favours already and didn't get much from you, so they must feel defeated enough to let you take the clothes you've lost back
+   Reason: Wren realises they've done a ton of favours already and didn't get much from you, so they must feel defeated enough to let you take the clothes you've lost back
 
 
 
diff --git a/game/overworld-plains/loc-farm/cottage.twee b/game/overworld-plains/loc-farm/cottage.twee
index ba5ecac4a185d3099721b0411ac23a44c3fe2a31..f74f7aef05f8d7930930ab570d05e22f371635aa 100644
--- a/game/overworld-plains/loc-farm/cottage.twee
+++ b/game/overworld-plains/loc-farm/cottage.twee
@@ -9,7 +9,7 @@
 <</if>>
 <<if $farm_stage gte 7>><<unset $farm_naked>><</if>>
 
-You are downstairs in Alex's cottage. It's tight, and cozy. There's a kitchen with modern appliances, and a small table, as well as a living room with a sofa and armchair.
+You are downstairs in Alex's cottage. It's tight, and cosy. There's a kitchen with modern appliances, and a small table, as well as a living room with a sofa and armchair.
 <br><br>
 
 <!-- Flavor text of Alex coming down, going up, or being upstairs -->
@@ -4245,7 +4245,7 @@ You keep listening to Alex, not daring to interrupt <<him>>. <<He>> constantly a
 <<He>> sighs. "I do feel bad for my having my own <<if childrenCountBetweenParents("Alex","pc") gte 2 or childrenCountBetweenParents("pc","Alex") gte 2>>children living as orphans<<else>>child living as an orphan<</if>>, but I really can't do this just by myself, you're their father, so share this responsibility too!"
 <br><br>
 
-<<link [[Apologize|Farm Alex Forgotten Birth 3]]>><<set $phase to 1>><</link>>
+<<link [[Apologise|Farm Alex Forgotten Birth 3]]>><<set $phase to 1>><</link>>
 <br>
 <<link [[Stay silent|Farm Alex Forgotten Birth 3]]>><<set $phase to 2>><</link>>
 
diff --git a/game/overworld-plains/loc-farm/widgets.twee b/game/overworld-plains/loc-farm/widgets.twee
index a5d2565244da035f38e5fb95037b2df9cf6cf82f..d1729e22e82e6532422592af63bc4f3654f0cd9d 100644
--- a/game/overworld-plains/loc-farm/widgets.twee
+++ b/game/overworld-plains/loc-farm/widgets.twee
@@ -2157,7 +2157,7 @@
 	<<elseif $farm_fight.door gte 8>>
 		<span class="blue">The cracks in the door have widened.</span>
 	<<elseif $farm_fight.door gte 5>>
-		<span class="lblue">A draft penetrates the thick cracks in the door.</span>
+		<span class="lblue">A draught penetrates the thick cracks in the door.</span>
 	<<elseif $farm_fight.door gte 2>>
 		<span class="teal">The cracks in the door are almost wide enough to fit an arm through.</span>
 	<<else>>
@@ -2827,7 +2827,7 @@
 	<<elseif $farm.wall gte 1>>
 		<span class="blue">The wall around the farm will slightly slow attackers.</span>
 	<<else>>
-		<span class="purple">The wall and fence enclosing the farm provide a meager barrier.</span>
+		<span class="purple">The wall and fence enclosing the farm provide a meagre barrier.</span>
 	<</if>>
 <</widget>>
 
diff --git a/game/overworld-plains/loc-farm/work.twee b/game/overworld-plains/loc-farm/work.twee
index 5a5a125c01503738bf178a80afbc45066d9e16d0..8628e901d659e95fa829217be62792df307cce33 100644
--- a/game/overworld-plains/loc-farm/work.twee
+++ b/game/overworld-plains/loc-farm/work.twee
@@ -703,13 +703,13 @@ You are on Alex's farm. A rustic farmhouse overlooks a yard and chicken coop. Ot
 			"Hey," shouts Alex, a scowl etched into her face as she stomps toward you. "Where the hell were you?!"
 			<br><br>
 
-			You're confused until you look down at her midsection. Her baby belly's gone; <span class="red">you must've missed her going into labor.</span>
+			You're confused until you look down at her midsection. Her baby belly's gone; <span class="red">you must've missed her going into labour.</span>
 			<br><br>
 
 			"I really thought you'd be there for me when it happened," <<he>> sighs. "Guess I was wrong."
 			<br><br>
 
-			<<link [[Apologize|Farm Alex Missed Birth]]>><<set $phase to 1>><</link>>
+			<<link [[Apologise|Farm Alex Missed Birth]]>><<set $phase to 1>><</link>>
 			<br>
 			<<link [[Stay silent|Farm Alex Missed Birth]]>><<set $phase to 2>><</link>>
 
@@ -2260,7 +2260,7 @@ You sneak up to the shed, and push the door open.
 		<br><br>
 	<</if>>
 
-	A draft blows through the gap in the door. Alex opens <<his>> eyes, but you're already gone. <<He>> shuts the door, none the wiser.
+	A draught blows through the gap in the door. Alex opens <<his>> eyes, but you're already gone. <<He>> shuts the door, none the wiser.
 	<br><br>
 
 	<<skulduggeryuse>>
diff --git a/game/overworld-plains/loc-moor/events.twee b/game/overworld-plains/loc-moor/events.twee
index aaa0405500ce8fbb3e10ef29591421a48bb28add..b994b509c7c379b17ac7e663fed4c3d37ec45846 100644
--- a/game/overworld-plains/loc-moor/events.twee
+++ b/game/overworld-plains/loc-moor/events.twee
@@ -3584,10 +3584,10 @@ You feel the youths leering at your <<bottom>> as you do.
 <<if $physiqueSuccess>>
 	<<if $monster is 1>>
 		You turn to face your assailant, planting your feet and raising your arms in a defensive posture just in time to intercept <<if $NPCList[0].skincolour is "black">>an ebony<<else>>a pale<</if>> blur leaping at you from the bushes.
-		You wrap your arms around it, twist to the side, and release. It crashes to the ground several meters away.
+		You wrap your arms around it, twist to the side, and release. It crashes to the ground several metres away.
 	<<else>>
 		You turn to face your assailant, planting your feet and raising your arms in a defensive posture just in time to intercept a reddish-brown blur leaping at you from the bushes.
-		You wrap your arms around it, twist to the side, and release. It crashes to the ground several meters away.
+		You wrap your arms around it, twist to the side, and release. It crashes to the ground several metres away.
 	<</if>>
 	<<bHe>>--a <<beasttype>>, you realise, now that you've had a moment to look at <<bhim>>--unsteadily climbs to <<bhis>> feet and flees back into the bushes.
 	<br><br>
@@ -3672,7 +3672,7 @@ You feel the youths leering at your <<bottom>> as you do.
 	<</if>>
 	<br>
 <<else>>
-	No response comes. You turn around to check, and it's immediately clear why: a large <<beasttype>> is peeking at you from within the bushes a few meters away.
+	No response comes. You turn around to check, and it's immediately clear why: a large <<beasttype>> is peeking at you from within the bushes a few metres away.
 	<br><br>
 
 	<<link [[Beckon closer|Moor Fox Beckon]]>><</link>><<tendingdifficulty _tendingMin _tendingMax>>
@@ -3891,7 +3891,7 @@ You slowly hold out your hands toward the <<beasttype>>, doing your best to appe
 		<<if $speech_attitude is "meek">>
 			"I-I want to feel good too," you whisper in <<bhis>> ear.
 		<<elseif $speech_attitude is "bratty">>
-			"I hope you're planning on returning the favor," you whisper in <<bhis>> ear.
+			"I hope you're planning on returning the favour," you whisper in <<bhis>> ear.
 		<<else>>
 			"How about we do something even better?" you whisper in <<bhis>> ear.
 		<</if>>
@@ -3903,7 +3903,7 @@ You slowly hold out your hands toward the <<beasttype>>, doing your best to appe
 			The <<beasttype>> chuckles. "I was hoping you'd say that."
 		<</if>>
 	<<else>>
-		You throw a leg over the fox, straddling its lower half. The fox squeals in anticipation as it realizes your intentions.
+		You throw a leg over the fox, straddling its lower half. The fox squeals in anticipation as it realises your intentions.
 	<</if>>
 	<<deviancy4>>
 <</if>>
diff --git a/game/overworld-town/loc-adultshop/events.twee b/game/overworld-town/loc-adultshop/events.twee
index 5d586dee9bfa51d3e6e1523a22cee6b2314a6cd7..1d474216d1179a448e61463dedcdcd358671e21e 100644
--- a/game/overworld-town/loc-adultshop/events.twee
+++ b/game/overworld-town/loc-adultshop/events.twee
@@ -3015,7 +3015,7 @@ As you enter the shop, Sydney waves at you from behind the counter. A <<person>>
 <br><br>
 Before you formulate a reply, Sydney appears.<<person2>>
 <<if _sydneyStatus.includes("pure")>>
-	"Hardly boring. I'm still trying to figure out what a..." <<He>> pauses to pick up a sex toy. "<<print either("Specialty vibronic","Kaleidoscopic","Ergonomically reformed","Erotically ribbed","Ultra vibronic","Synthetik-lite","Electro pleasure","Harmony matrix")>> <<print randomSexToy("all")>> is." <<He>> shakes <<his>> head.
+	"Hardly boring. I'm still trying to figure out what a..." <<He>> pauses to pick up a sex toy. "<<print either("Speciality vibronic","Kaleidoscopic","Ergonomically reformed","Erotically ribbed","Ultra vibronic","Synthetik-lite","Electro pleasure","Harmony matrix")>> <<print randomSexToy("all")>> is." <<He>> shakes <<his>> head.
 <<elseif _sydneyStatus.includes("corrupt")>>
 	"We don't allow product sampling." <<He>> looks at you with a sly grin, "But we do test them."
 <<else>>
diff --git a/game/overworld-town/loc-adultshop/widgets.twee b/game/overworld-town/loc-adultshop/widgets.twee
index 22a6e3437b7a500eec0634d61422035f1bfd945c..afeac53f10325d0c9057584e98ec52a8ff859c05 100644
--- a/game/overworld-town/loc-adultshop/widgets.twee
+++ b/game/overworld-town/loc-adultshop/widgets.twee
@@ -139,7 +139,7 @@
 			<<if $adultshopstate is "sydney" and $sydneyromance gte 1>>
 				<<set _reactSpeech to ["Are you okay?","Everything all right over there?", "Do you need a hand?"]>>
 				<<if $adultshopstate is "sydney" and $sydneyromance gte 1 and _reactPerson is "Sydney">>
-					<<set _reactTone to either("inquires","exclaims","huffs with bemusement","sighs good-naturedly","offers","smiles warmly")>>
+					<<set _reactTone to either("enquires","exclaims","huffs with bemusement","sighs good-naturedly","offers","smiles warmly")>>
 				<</if>>
 			<</if>>
 	<</switch>>
diff --git a/game/overworld-town/loc-alley/events.twee b/game/overworld-town/loc-alley/events.twee
index b2404517e69e4000e1d5911719e0c8d0785ad1f2..3ff0cbbd9abd6260df436af417655c63f7d376ce 100644
--- a/game/overworld-town/loc-alley/events.twee
+++ b/game/overworld-town/loc-alley/events.twee
@@ -1126,7 +1126,7 @@ You glance between the two of them, and lick your lips. "If you let me have the
 "Please," you say, clasping your hands together. "Please, I really need it. Can't you please let me have that ladder?"
 <br><br>
 
-The <<person2>><<person>> almost gets up, but gives you a skeptical look. You smile hopefully. "Stepladder?" you try. That satisfies <<him>>, and <<he>> drags the <<person1>><<person>> out of the alleyway.
+The <<person2>><<person>> almost gets up, but gives you a sceptical look. You smile hopefully. "Stepladder?" you try. That satisfies <<him>>, and <<he>> drags the <<person1>><<person>> out of the alleyway.
 <br><br>
 
 The stepladder is a little unwieldy, but you manage to set it up under Briar's office window without making too much sound. It shouldn't be visible from the window itself unless Briar looks directly down, which you hope <<nnpc_he "Briar">> won't do. A few passersby give you odd looks, but they don't question anything. <span class="green">You now have an escape route.</span>
diff --git a/game/overworld-town/loc-alley/park.twee b/game/overworld-town/loc-alley/park.twee
index e4d73d33d687b7ad1dcf115098bfbd89adcbdecf..c19eb5a227772a1a9cd9d35d1dbb9edd51bba450 100644
--- a/game/overworld-town/loc-alley/park.twee
+++ b/game/overworld-town/loc-alley/park.twee
@@ -166,21 +166,20 @@ Tulips grow in great patches near the riverbank.
 				<<robinicon "cocoa">><<link [[Robin's hot chocolate stand|Robin Chocolate]]>><</link>>
 				<br>
 			<</if>>
-			<<if C.npc.Kylar.state is "active" and !["rain", "snow"].includes($weather) and Time.dayState is "day" and $kylarwatched isnot 1 and !($englishPlay is "ongoing" and $englishPlayRoles.Kylar and $schoolstate is "afternoon")>>
-				<<if !Time.schoolDay or Time.hour lte 8 or Time.hour gte 15>>
-					<<if $kylar.fountain is 1>>
-						<br>
-						Kylar sits at the fountain, occasionally tossing coins in.
-						<br>
-						<<parkicon "fountain">><<link [[Approach|Kylar Park]]>><<set $kylar_text_trigger to true>><</link>>
-				<<else>>
-						<br>
-						Kylar sits on a bench, sketching something.
-						<br>
-						<<parkicon>><<link [[Approach|Kylar Park]]>><<set $kylar_text_trigger to true>><</link>>
-					<</if>>
-					<br><br>
+			<<set _kylarLocation to getKylarLocation()>>
+			<<if _kylarLocation.area is "park">>
+				<<if _kylarLocation.state is "fountain">>
+					<br>
+					Kylar sits at the fountain, occasionally tossing coins in.
+					<br>
+					<<parkicon "fountain">><<link [[Approach|Kylar Park]]>><<set $kylar_text_trigger to true>><</link>>
+				<<elseif _kylarLocation.state is "bench">>
+					<br>
+					Kylar sits on a bench, sketching something.
+					<br>
+					<<parkicon>><<link [[Approach|Kylar Park]]>><<set $kylar_text_trigger to true>><</link>>
 				<</if>>
+				<br><br>
 			<</if>>
 			<<if isInPark("whitney")>>
 				<br>
diff --git a/game/overworld-town/loc-arcade/main.twee b/game/overworld-town/loc-arcade/main.twee
index cba887d476d773be9432d3d77815f383fa1f51d0..da9200f65ec83a228c77b614d4fd644286d0ebb9 100644
--- a/game/overworld-town/loc-arcade/main.twee
+++ b/game/overworld-town/loc-arcade/main.twee
@@ -57,14 +57,13 @@ The games and gambling machines lie silent.
 			<<robinicon "controller">><<link [[Play (£5 0:20)|Arcade Play]]>><<set $money -= 500>><<pass 20>><<stress -2>><</link>><<lstress>>
 			<br>
 		<</if>>
-		<<if $exposed lte 0 and C.npc.Kylar.state is "active" and ($weather is "rain" or $weather is "snow") and Time.dayState is "day" and $kylarwatched isnot 1>>
-			<<if !Time.schoolTime and (Time.dayState is "day" or Time.dayState is "night")>>
-				<br>
-				You see Kylar playing on one of the cabinets.
-				<br>
-				<<ind>><<link [[Approach|Kylar Arcade]]>><<set $kylar_text_trigger to true>><</link>>
-				<br>
-			<</if>>
+		<<set _kylarLocation to getKylarLocation()>>
+		<<if $exposed lte 0 and _kylarLocation.area is "arcade" && _kylarLocation.state is "playing">>
+			<br>
+			You see Kylar playing on one of the cabinets.
+			<br>
+			<<ind>><<link [[Approach|Kylar Arcade]]>><<set $kylar_text_trigger to true>><</link>>
+			<br>
 		<</if>>
 		<<if ($tenyclusPlayCount is undefined or $tenyclusPlayCount is 0) and $hallucinations gte 1 and !$daily.tenyclusPlayed and $money gte 500 and (Time.dayState is "day" or Time.dayState is "dusk") and $exposed lte 0>>
 			<<set $tenyclusPlayCount to 0>><<set $daily.tenyclusPlayed to 0>>
@@ -1225,7 +1224,7 @@ The fight goes back and forth, and finally both your health bars are under ten p
 		"Nice ass, you're better at showing it off than playing games."
 		<br><br>
 
-		You realize that your ass is still exposed to the whole arcade. The crowd has their phones out and pointed right at you.
+		You realise that your ass is still exposed to the whole arcade. The crowd has their phones out and pointed right at you.
 	<</if>>
 	<br>
 
@@ -1400,7 +1399,7 @@ You decide to ignore the <<person1>><<person>> and walk off into the arcade.
 
 		<<case "lower">>
 			<<if $worn.under_lower.type.includes("naked")>>
-				You hesitate, before slowly pulling your <<bottoms>> down. The crowd reacts favorably to seeing your lack of underwear.
+				You hesitate, before slowly pulling your <<bottoms>> down. The crowd reacts favourably to seeing your lack of underwear.
 			<<else>>
 				You pull down your <<bottoms>>, exposing your <<underbottoms>>. You step out of them, leaving only your <<underbottoms>> protecting any modesty.
 			<</if>>
diff --git a/game/overworld-town/loc-beach/balloon.twee b/game/overworld-town/loc-beach/balloon.twee
index a3ebcf92472415de4f5e7676d7f3805c5887ccc0..19c914ecfa99a02257a1e7c7645386c4bdaacfaa 100644
--- a/game/overworld-town/loc-beach/balloon.twee
+++ b/game/overworld-town/loc-beach/balloon.twee
@@ -348,7 +348,7 @@ The <<personsimple>> chats up a customer, doing <<his>> best to keep <<his>> voi
 		<br><br>
 		"I know." <<person2>><<He>> stares at the ground. "Thank you for wanting to help."
 	<<elseif $phase is 1>>
-		You raise your voice as you lay into Robin, berating <<him>> for <<his>> naivete. You tell <<him>> that you did <<him>> a favor, <<print $robinpaid gte 1 ? "and if <<he>> ever hopes to pay <<his>> own way, <<he>> needs to get a real job" : "because <<he>> can't make a living just from selling lemonade">>. By the time you're done, <<hes>> in tears.
+		You raise your voice as you lay into Robin, berating <<him>> for <<his>> naivete. You tell <<him>> that you did <<him>> a favour, <<print $robinpaid gte 1 ? "and if <<he>> ever hopes to pay <<his>> own way, <<he>> needs to get a real job" : "because <<he>> can't make a living just from selling lemonade">>. By the time you're done, <<hes>> in tears.
 		<br><br>
 		"I'll do better," <<he>> mumbles, "so you don't have to keep supporting me..." <<He>> needs a few moments to compose <<himself>>.
 	<<else>>
diff --git a/game/overworld-town/loc-beach/events.twee b/game/overworld-town/loc-beach/events.twee
index 9673806a8f0af8198127874db38bbe7687a8e303..57f709cff3ac20dde9022729bc1ef605d98ea1d1 100644
--- a/game/overworld-town/loc-beach/events.twee
+++ b/game/overworld-town/loc-beach/events.twee
@@ -96,7 +96,7 @@ With your clothes bundled in <<his>> arms, the <<person>> gives you a mocking lo
 <<if $phase is 0>>
 	You walk over to the <<person>> who pretends not to notice you until you stop in front of <<him>>.
 	<<if playerBellyVisible()>>
-		<<He>> notices your pregnant belly once you've gotten close enough. "My my!" <<he>> exclaims with glee. "Ready to be a mom already?"
+		<<He>> notices your pregnant belly once you've gotten close enough. "My my!" <<he>> exclaims with glee. "Ready to be a mum already?"
 	<<else>>
 		<<He>> looks at you but doesn't speak.
 	<</if>>
diff --git a/game/overworld-town/loc-beach/main.twee b/game/overworld-town/loc-beach/main.twee
index a8953b1756a90db34c5cd6e2b7af5050266fa604..3523e3081b40be97b126e28115003846874accae 100644
--- a/game/overworld-town/loc-beach/main.twee
+++ b/game/overworld-town/loc-beach/main.twee
@@ -1134,7 +1134,7 @@ The <<person1>><<person>> shrugs and returns to <<his>> party. You continue enjo
 "Sure!" you say. The <<person>> smiles, and you follow him back to the party.
 <br><br>
 
-You feel everyone's eyes on your body as you walk onto the dry sand and into the campsite. You are soon surrounded by two dozen people your own age. You quickly become the center of attention.
+You feel everyone's eyes on your body as you walk onto the dry sand and into the campsite. You are soon surrounded by two dozen people your own age. You quickly become the centre of attention.
 <br><br>
 
 <<if playerBellyVisible()>>
diff --git a/game/overworld-town/loc-brothel/main.twee b/game/overworld-town/loc-brothel/main.twee
index a69a17b2ac1d3a4db28ba32c3e7b4355c32e33b0..4a301298e56b408d2b6d518aad64c1578e90f9df 100644
--- a/game/overworld-town/loc-brothel/main.twee
+++ b/game/overworld-town/loc-brothel/main.twee
@@ -156,7 +156,7 @@ You are in the brothel's dressing room. There are a few mirrors, currently occup
 
 <<if $brothelVending>>
 	<<if $brothelVending.status is "asked" or ($brothelVending.status is "sold" and $brothelVending.weeksEmpty lt 4)>>
-		<<condomicon "machine">><span class="gold">You can buy a vending machine at the shopping center to set up here.</span>
+		<<condomicon "machine">><span class="gold">You can buy a vending machine at the shopping centre to set up here.</span>
 		<br><br>
 	<<elseif $brothelVending.status is "sold" and $brothelVending.weeksEmpty gte 4>>
 		<<condomicon "machine">><span class="gold">Your vending machine has been sold. You should talk to Briar.</span>
@@ -534,7 +534,7 @@ I'd like to offer you work looking after our guests. You saw how it works on the
 	<<ind>><<link [[Yes|"Briar's Office"]]>><<endevent>><<set $brotheljob to 1>><<set $phase to 1>><<set $wardrobes.brothel.unlocked to true>><</link>>
 	<br>
 	<<if $id is 0>>
-		<<askicon>><<link [[Inquire about ID card|"Briar's Office ID"]]>><</link>>
+		<<askicon>><<link [[Enquire about ID card|"Briar's Office ID"]]>><</link>>
 		<br>
 	<</if>>
 	<<getouticon>><<link [[Leave|Brothel]]>><<endevent>><</link>>
@@ -603,7 +603,7 @@ I'd like to offer you work looking after our guests. You saw how it works on the
 		<</if>>
 	<</if>>
 	<<if $id is 0>>
-		<<askicon>><<link [[Inquire about ID card|"Briar's Office ID"]]>><</link>>
+		<<askicon>><<link [[Enquire about ID card|"Briar's Office ID"]]>><</link>>
 		<br>
 	<</if>>
 	<<if $brothel_machine_repair is 1>>
@@ -2811,7 +2811,7 @@ The <<person1>><<person>> grabs you by the chin and lifts your head to get a goo
 <<effects>>
 
 <<if $phase is 1>>
-	You meet <<his>> gaze with a lewd look. "P-please, give me more..." you say. <<He>> is clearly excited from your submissive behavior.
+	You meet <<his>> gaze with a lewd look. "P-please, give me more..." you say. <<He>> is clearly excited from your submissive behaviour.
 	<br><br>
 
 	"One day I will come and buy you!" <<he>> exclaims.
diff --git a/game/overworld-town/loc-cafe/chef.twee b/game/overworld-town/loc-cafe/chef.twee
index 7eb5efc9c7c01426b3201c0ceffb5396786fec1a..274b291d9b5017b3580196787c9dc35ccbdac270 100644
--- a/game/overworld-town/loc-cafe/chef.twee
+++ b/game/overworld-town/loc-cafe/chef.twee
@@ -445,19 +445,19 @@ You make sure you're alone in the kitchen, and place a bowl in front of you.
 	Sam arrives as you finish adding the cream, drawn by the smell. <<He>> leans over them, closes <<his>> eyes, and sniffs.
 
 	<<if _buns_sold gte 30>>
-		"Marvelous," <<he>> says, staring in awe at the mountain in front of <<him>>. "This might be enough to satisfy demand. Good job!"
+		"marvellous," <<he>> says, staring in awe at the mountain in front of <<him>>. "This might be enough to satisfy demand. Good job!"
 	<<elseif _buns_sold gte 20>>
-		"Marvelous," <<he>> says, licking <<his>> lips. "You've been very busy. Our customers will be happy."
+		"marvellous," <<he>> says, licking <<his>> lips. "You've been very busy. Our customers will be happy."
 	<<elseif _buns_sold gte 10>>
-		"Marvelous," <<he>> says, licking <<his>> lips. "Good job. Our customers will be happy."
+		"marvellous," <<he>> says, licking <<his>> lips. "Good job. Our customers will be happy."
 	<<elseif _buns_sold gte 4>>
-		"Marvelous," <<he>> says, licking <<his>> lips. "A nice batch. Our customers will be happy."
+		"marvellous," <<he>> says, licking <<his>> lips. "A nice batch. Our customers will be happy."
 	<<elseif _buns_sold gte 3>>
-		"Marvelous," <<he>> says, licking <<his>> lips. "Three customers are going to be happy."
+		"marvellous," <<he>> says, licking <<his>> lips. "Three customers are going to be happy."
 	<<elseif _buns_sold gte 2>>
-		"Marvelous," <<he>> says, licking <<his>> lips. "Shame there's only a couple. Our customers might need to draw lots."
+		"marvellous," <<he>> says, licking <<his>> lips. "Shame there's only a couple. Our customers might need to draw lots."
 	<<else>>
-		"Marvelous," <<he>> says. "Shame there's only one. I hope a fight doesn't break out!"
+		"marvellous," <<he>> says. "Shame there's only one. I hope a fight doesn't break out!"
 	<</if>>
 	<br><br>
 
diff --git a/game/overworld-town/loc-dance-studio/job.twee b/game/overworld-town/loc-dance-studio/job.twee
index 4681a60c9eac101cfca6670d718b572cace5df34..591392b72eef4bf2a33764065b23cd39459aaaf5 100644
--- a/game/overworld-town/loc-dance-studio/job.twee
+++ b/game/overworld-town/loc-dance-studio/job.twee
@@ -1815,7 +1815,7 @@ The manor's halls are luxurious and extravagant.
 		<span class="teal">You hear chanting,</span> barely audible against the muffled sound of the party.
 		<br><br>
 
-		You turn in the direction of the voices, coming face to face with an old tapestry. You feel a draft. You pull the tapestry aside, revealing a dark passage.
+		You turn in the direction of the voices, coming face to face with an old tapestry. You feel a draught. You pull the tapestry aside, revealing a dark passage.
 		<br><br>
 
 		<<link [[Enter|Dance Job Stage Passage]]>><</link>>
@@ -1825,14 +1825,14 @@ The manor's halls are luxurious and extravagant.
 	<</addinlineevent>>
 <</if>>
 
-<<addinlineevent "dance_explore_jewelry">>
+<<addinlineevent "dance_explore_jewellery">>
 	<<generate1>><<person1>>
-	You enter a long room filled with display cases, showing off jewelry and antiques. A <<person>> leans against the wall on the far side. <<He>> appears to be dozing.
+	You enter a long room filled with display cases, showing off jewellery and antiques. A <<person>> leans against the wall on the far side. <<He>> appears to be dozing.
 	<br><br>
 	The cases are locked, and might be rigged with alarms.
 	<br><br>
 	<<set $skulduggerydifficulty to 1000>>
-	<<link [[Steal jewelry|Dance Job Stage Explore Jewelry]]>><<set $skulduggerydifficulty to 1000>><</link>><<skulduggerydifficulty>><<crime "thievery">>
+	<<link [[Steal jewellery|Dance Job Stage Explore Jewelry]]>><<set $skulduggerydifficulty to 1000>><</link>><<skulduggerydifficulty>><<crime "thievery">>
 	<br>
 	<<set $skulduggerydifficulty to 600>>
 	<<link [[Steal antique|Dance Job Stage Explore Antique]]>><<set $skulduggerydifficulty to 600>><</link>><<skulduggerydifficulty>><<crime "thievery">>
@@ -1988,7 +1988,7 @@ One of the tapestries looks older than the others, the art more primitive. You p
 <<skulduggerycheck>>
 <<if $skulduggerysuccess is 1>>
 
-	You feel a draft, and voices. Chanting? You pull the tapestry aside, revealing a dark passage hidden behind.
+	You feel a draught, and voices. Chanting? You pull the tapestry aside, revealing a dark passage hidden behind.
 	<br><br>
 
 	<<if $skulduggery lte ($skulduggerydifficulty + 100)>>
@@ -2448,7 +2448,7 @@ You return to the party.
 :: Dance Job Stage Explore Pool
 <<effects>>
 
-You sneak to their discarded clothes, and rifle for jewelry and anything else that might turn some cash.
+You sneak to their discarded clothes, and rifle for jewellery and anything else that might turn some cash.
 
 <<skulduggerycheck>>
 <<if $skulduggerysuccess is 1>>
diff --git a/game/overworld-town/loc-dance-studio/main.twee b/game/overworld-town/loc-dance-studio/main.twee
index 60150b408b5d9606d5beecaa6bae5bd5e0144ac5..e3a5045bc8b1a8157fb9facfe2d8fee030740903 100644
--- a/game/overworld-town/loc-dance-studio/main.twee
+++ b/game/overworld-town/loc-dance-studio/main.twee
@@ -64,7 +64,7 @@ You are in the dance studio. Here you can pay for lessons to improve your dancin
 				<br>
 			<</if>>
 		<<else>>
-			<<askicon>><<link [[Inquire about high heel lessons|Heel Lesson Inquiry]]>><</link>>
+			<<askicon>><<link [[Enquire about high heel lessons|Heel Lesson Inquiry]]>><</link>>
 			<br>
 		<</if>>
 		<<if (Time.weekDay is 2 or Time.weekDay is 4 or Time.weekDay is 6)>>
@@ -73,7 +73,7 @@ You are in the dance studio. Here you can pay for lessons to improve your dancin
 			<</if>>
 			<br>
 		<<else>>
-			<<askicon>><<link [[Inquire about yoga lessons|Yoga Classes Inquire]]>><</link>>
+			<<askicon>><<link [[Enquire about yoga lessons|Yoga Classes Inquire]]>><</link>>
 			<br>
 		<</if>>
 	<</if>>
@@ -407,7 +407,7 @@ Your heart beats faster as you walk away from the dance studio, and away from re
 <br><br>
 <<endcombat>>
 <<npc Charlie>><<person1>><<npcincr Charlie love 2>><<glove>>
-Charlie immediately recognises that something is wrong. <<He>> pulls you aside and gently inquires. Wanting to put your ordeal behind you, you tell <<him>> that everything is fine. Charlie continues the lesson, but still looks concerned.
+Charlie immediately recognises that something is wrong. <<He>> pulls you aside and gently enquires. Wanting to put your ordeal behind you, you tell <<him>> that everything is fine. Charlie continues the lesson, but still looks concerned.
 <br><br>
 <<clothesontowel>>
 <<endevent>>
@@ -536,7 +536,7 @@ Charlie immediately recognises that something is wrong. <<He>> pulls you aside a
 						"A little dizzy," you admit. "But otherwise fine."
 					<</if>>
 					<br><br>
-					Charlie nods. "That's to be expected," <<nnpc_he "Charlie">> says. "We'll take it easy in class today with some restorative yoga. There are poses that can help mitigate the dizziness by evening out blood circulation and improving your center of balance." <<nnpc_He "Charlie">> demonstrates some poses, and you feel steadier on your feet after completing the routine.
+					Charlie nods. "That's to be expected," <<nnpc_he "Charlie">> says. "We'll take it easy in class today with some restorative yoga. There are poses that can help mitigate the dizziness by evening out blood circulation and improving your centre of balance." <<nnpc_He "Charlie">> demonstrates some poses, and you feel steadier on your feet after completing the routine.
 				<<else>>
 					The lesson goes on. You are able to follow without much difficulty.
 				<</if>>
@@ -732,7 +732,7 @@ You enter the changing room, and think about how you would like to dress for the
 	<br><br>
 	<<clotheson>>
 	<<endcombat>>
-	Charlie immediately recognises that something is wrong. <<nnpc_He "Charlie">> pulls you aside and gently inquires. Wanting to put your ordeal behind you, you tell <<nnpc_him "Charlie">> that everything is fine. Charlie continues the lesson, but still looks concerned. <<npcincr Charlie love 2>><<glove>>
+	Charlie immediately recognises that something is wrong. <<nnpc_He "Charlie">> pulls you aside and gently enquires. Wanting to put your ordeal behind you, you tell <<nnpc_him "Charlie">> that everything is fine. Charlie continues the lesson, but still looks concerned. <<npcincr Charlie love 2>><<glove>>
 	<br><br>
 	<<link [[Next|Yoga Classes Start 2]]>><</link>>
 <</if>>
diff --git a/game/overworld-town/loc-danube-homes/work.twee b/game/overworld-town/loc-danube-homes/work.twee
index bcc5fbc202d2bee9a2c4b310edc4d8e830b0ad09..d532a07fc7156bb0680aa0106baeb4089a574fa7 100644
--- a/game/overworld-town/loc-danube-homes/work.twee
+++ b/game/overworld-town/loc-danube-homes/work.twee
@@ -2069,7 +2069,7 @@ You refuse the <<persons>> offer and leave <<him>> to console <<his>> pets.
 :: Danube Catperson Accept
 <<set $outside to 0>><<set $location to "town">><<effects>><<set $bus to "danube">>
 
-"Marvelous! I'll be quick as I can." <<He>> pauses halfway through the door. "Don't worry about feeding them. They're needy things, but they just had their <<if Time.dayState is "dawn">>breakfast<<elseif Time.dayState is "day">>lunch<<else>>dinner<</if>>."
+"marvellous! I'll be quick as I can." <<He>> pauses halfway through the door. "Don't worry about feeding them. They're needy things, but they just had their <<if Time.dayState is "dawn">>breakfast<<elseif Time.dayState is "day">>lunch<<else>>dinner<</if>>."
 <br><br>
 
 With those words, <<hes>> gone.
diff --git a/game/overworld-town/loc-farmers-centre/main.twee b/game/overworld-town/loc-farmers-centre/main.twee
index 030ec63a4a125efd14dd483b7d9df387e8393021..5e673abe24e2bfb4db50c8ebef6e66c105506e91 100644
--- a/game/overworld-town/loc-farmers-centre/main.twee
+++ b/game/overworld-town/loc-farmers-centre/main.twee
@@ -54,7 +54,7 @@
 		<<ind>><<link [[Collect money|Farmers Centre Money Collection]]>><</link>>
 		<br>
 	<</if>>
-	<<askicon>><<link [[Inquire about selling produce|Farmers Centre Produce Sale]]>><</link>>
+	<<askicon>><<link [[Enquire about selling produce|Farmers Centre Produce Sale]]>><</link>>
 	<br><br>
 	<<harvesticon>><<link [[Leave|Harvest Street]]>><<endevent>><</link>>
 
diff --git a/game/overworld-town/loc-flats/auction.twee b/game/overworld-town/loc-flats/auction.twee
index 137b4ce85c4a757e147ae7f69988eb5270996804..1a71d58963a8ba7f43a1f88b1eda43b648c72353 100644
--- a/game/overworld-town/loc-flats/auction.twee
+++ b/game/overworld-town/loc-flats/auction.twee
@@ -237,7 +237,7 @@ The <<person5>><<person>> approaches the platform. The <<person1>><<person>> thr
 <<pass 5>>
 <br><br>
 
-You journey for several minutes, occasionally hearing the hum of machinery, but never feeling a draft of fresh air.
+You journey for several minutes, occasionally hearing the hum of machinery, but never feeling a draught of fresh air.
 <br><br>
 
 
diff --git a/game/overworld-town/loc-home/garden.twee b/game/overworld-town/loc-home/garden.twee
index 2fdcd541153b1eb24d8c19de57f5669dc569e2fd..14aa094f09f4f01afbeb159f32cbf0b54c558c4d 100644
--- a/game/overworld-town/loc-home/garden.twee
+++ b/game/overworld-town/loc-home/garden.twee
@@ -291,7 +291,7 @@ You watch the couple hump away with reckless abandon. Their panting and stifled
     As you are busy pleasuring yourself, you suddenly feel a hand grabbing you by the shoulder. You turn around in surprise. It's Bailey!<<gstress>><<stress 12>>
     <br><br>
 
-    Bailey scowls. "I thought I was hearing strange sounds coming from this direction. Should've known I'd find you here. Now if you don't mind, conduct your business inside, before the neighbors get strange ideas about this place."
+    Bailey scowls. "I thought I was hearing strange sounds coming from this direction. Should've known I'd find you here. Now if you don't mind, conduct your business inside, before the neighbours get strange ideas about this place."
     <br><br>
 
     With that, Bailey huffs off. When you look back over your shoulder, you find the couple gone.
@@ -537,7 +537,7 @@ You find some seeding daisies growing within a tuft of wild grass near the back
 
 <br><br>
 
-<<generatec1>><<person1>>A <<person>> steps out from behind a bush, grinning ear to ear. "Alright, but first let me see you properly."
+<<generatey1>><<person1>>A <<person>> steps out from behind a bush, grinning ear to ear. "Alright, but first let me see you properly."
 <br><br>
 
 <<link [[Do as asked|Bask Call Move]]>><<stress 6>><<trauma 6>><</link>><<gtrauma>><<gstress>>
diff --git a/game/overworld-town/loc-home/main.twee b/game/overworld-town/loc-home/main.twee
index 7abebc2dce90078c80907625cc536fd9e6f16112..aaf784157acbd0779b64cc07c0bd24c921127104 100644
--- a/game/overworld-town/loc-home/main.twee
+++ b/game/overworld-town/loc-home/main.twee
@@ -2241,7 +2241,7 @@ You are in the main hall of the orphanage.
 		<br>
 	<</if>>
 <<elseif $robinmissing is "pillory" and !$robinPillory.known and Time.hour gte 7 and Time.hour lte 15>>
-	<<generatec1>><<person1>>
+	<<generatey1>><<person1>>
 	<<npc Robin 2>>
 
 	One of the younger orphans spots you enter the main hall as they pass by. "You're friends with Robin, right? <<person2>><<Hes>> been gone for a while," <<person1>><<he>> says.
diff --git a/game/overworld-town/loc-hospital/main.twee b/game/overworld-town/loc-hospital/main.twee
index 63f180d35845a487e808dfa9e8f89acaf8c420aa..49ad7d6679e1d7fed5bb5e61488e53008f056e2a 100644
--- a/game/overworld-town/loc-hospital/main.twee
+++ b/game/overworld-town/loc-hospital/main.twee
@@ -102,57 +102,57 @@ You are inside the hospital foyer. <<if $psych is 1>>You see a sign directing to
 		<</if>>
 
 		<<if C.npc.Alex.pregnancy.sample is true and playerIsPregnant() and !isPlayerNonparasitePregnancyEnding()>>
-			<<procedureicon "paternity">><<link [[Inquire about a paternity test (0:10)|Hospital Paternity Test]]>><<pass 10>><</link>>
+			<<procedureicon "paternity">><<link [[Enquire about a paternity test (0:10)|Hospital Paternity Test]]>><<pass 10>><</link>>
 			<br><br>
 		<</if>>
 
 		<<if $penilechastityparasite is 0 and $vaginalchastityparasite is 0 and $analchastityparasite is 0 and $parasite.clit.name is undefined and $parasite.penis.name is undefined and $parasite.nipples.name is undefined and $parasite.bottom.name is undefined and $parasite.left_ear.name is undefined and $parasite.right_ear.name is undefined>>
 		<<else>>
-			<<askicon>><<link [[Inquire about body parasite removal (0:10)|Hospital Parasite]]>><<pass 10>><</link>>
+			<<askicon>><<link [[Enquire about body parasite removal (0:10)|Hospital Parasite]]>><<pass 10>><</link>>
 			<br>
 		<</if>>
 		<<if $player.breastsize lte 11>>
-			<<procedureicon "breast enlarge">><<link [[Inquire about breast enlargement (0:10)|Hospital Breast Enlargement]]>><<pass 10>><</link>>
+			<<procedureicon "breast enlarge">><<link [[Enquire about breast enlargement (0:10)|Hospital Breast Enlargement]]>><<pass 10>><</link>>
 			<br>
 		<</if>>
 		<<if $player.breastsize gte 1>>
-			<<procedureicon "breast reduce">><<link [[Inquire about breast reduction (0:10)|Hospital Breast Reduction]]>><<pass 10>><</link>>
+			<<procedureicon "breast reduce">><<link [[Enquire about breast reduction (0:10)|Hospital Breast Reduction]]>><<pass 10>><</link>>
 			<br>
 		<</if>>
 		<<if $player.penisExist and $player.penissize lt $penissizemax>>
-			<<procedureicon "penis enlarge">><<link [[Inquire about penis enlargement (0:10)|Hospital Penis Enlargement]]>><<pass 10>><</link>>
+			<<procedureicon "penis enlarge">><<link [[Enquire about penis enlargement (0:10)|Hospital Penis Enlargement]]>><<pass 10>><</link>>
 			<br>
 		<</if>>
 		<<if $player.penisExist and $player.penissize gt $penissizemin>>
-			<<procedureicon "penis reduce">><<link [[Inquire about penis reduction (0:10)|Hospital Penis Reduction]]>><<pass 10>><</link>>
+			<<procedureicon "penis reduce">><<link [[Enquire about penis reduction (0:10)|Hospital Penis Reduction]]>><<pass 10>><</link>>
 			<br>
 		<</if>>
 		<<set _aPregnancy to $sexStats.anus.pregnancy>>
 		<<set _vPregnancy to $sexStats.vagina.pregnancy>>
 		<<if $pregnancyStats.parasiteDoctorEvents is 1>>
-			<<askicon>><<link [[Inquire about movement in your stomach (0:10)|Pregnancy Introduction]]>><<pass 10>><</link>>
+			<<askicon>><<link [[Enquire about movement in your stomach (0:10)|Pregnancy Introduction]]>><<pass 10>><</link>>
 			<br>
 		<</if>>
 		<<if $pregnancyStats.parasiteDoctorEvents is 3 or ((_aPregnancy.motherStatus is 2 or (_vPregnancy.motherStatus is 2 and !$worn.genitals.type.includes("hidden"))) and $pregnancyStats.parasiteDoctorEvents gt 3) or ($pregnancyStats.parasiteBook is 1 and $pregnancyStats.parasiteDoctorEvents gte 2) or $container.portable.value gt 0>>
 			<<if $deviancy gte 75>><<set $pregnancyStats.namesParasitesChild to true>><<else>><<set $pregnancyStats.namesParasitesChild to false>><</if>>
 			<<if $pregnancyStats.namesParasitesChild is true>>
-				<<askicon>><<link [[Inquire about your pregnancy and children (0:10)|Pregnancy Discussion]]>><<pass 10>><</link>>
+				<<askicon>><<link [[Enquire about your pregnancy and children (0:10)|Pregnancy Discussion]]>><<pass 10>><</link>>
 				<br>
 			<<else>>
-				<<askicon>><<link [[Inquire about the parasites inside you (0:10)|Pregnancy Discussion]]>><<pass 10>><</link>>
+				<<askicon>><<link [[Enquire about the parasites inside you (0:10)|Pregnancy Discussion]]>><<pass 10>><</link>>
 				<br>
 			<</if>>
 		<</if>>
 		<<set _pregnancy to getPregnancyObject()>>
 		<<if _pregnancy.awareOf and !$daily.ultrasoundDone and between(_pregnancy.timer / _pregnancy.timerEnd, 0.1, 1)>>
-			<<askicon>><<link [[Inquire about getting an ultrasound (0:10)|Pregnancy ultrasound]]>>
+			<<askicon>><<link [[Enquire about getting an ultrasound (0:10)|Pregnancy ultrasound]]>>
 				<<pass 10>><<set $daily.ultrasoundDone to true>>
 			<</link>>
 			<br>
 		<</if>>
 		<<for _active_bodypart range setup.bodyparts>>
 			<<if $skin[_active_bodypart].pen is "tattoo">>
-				<<shopicon "tattoo">><<link [[Inquire about tattoo removal (0:10)|Hospital Tattoo Removal]]>><<pass 10>><</link>>
+				<<shopicon "tattoo">><<link [[Enquire about tattoo removal (0:10)|Hospital Tattoo Removal]]>><<pass 10>><</link>>
 				<br>
 				<<break>>
 			<</if>>
diff --git a/game/overworld-town/loc-island/main.twee b/game/overworld-town/loc-island/main.twee
index 8ce23b25fa926c94adeb5eba913167f7aaba268d..08206ef1c204b7b6f9bdc1290dba24d2f3407113 100644
--- a/game/overworld-town/loc-island/main.twee
+++ b/game/overworld-town/loc-island/main.twee
@@ -1806,7 +1806,7 @@ You kneel before the sleeping figure. There's no response. The <<person1>><<pers
 	The moment you touch the hilt, it sears your palm. Your mind tells you to recoil and withdraw, but your body disobeys. You cling to it, and it clings to you. The pain is unbearable.
 	<br><br>
 
-	The impurity within you clashes with the immaculate artifact. It sends swirling shapes into your mind, coalescing into the silhouette of an amourphous, yet humanoid, figure. The only feature you can make out are that it has antlers, with each prong seemingly splitting into an infinite number of further prongs, which each split themselves, growing and vanishing at the base forever. The world spins in a chariot's wheel. The burning builds more and more, but just as quickly, it vanishes. The light no longer burns you, instead feeling comfortably warm.
+	The impurity within you clashes with the immaculate artefact. It sends swirling shapes into your mind, coalescing into the silhouette of an amourphous, yet humanoid, figure. The only feature you can make out are that it has antlers, with each prong seemingly splitting into an infinite number of further prongs, which each split themselves, growing and vanishing at the base forever. The world spins in a chariot's wheel. The burning builds more and more, but just as quickly, it vanishes. The light no longer burns you, instead feeling comfortably warm.
 	<br><br>
 
 	You don't remember wrestling the spear from the sleeping figure's grip, or when you dropped to your knees, but you're holding it as though your life depends on it. Despite being so opposed, so different, you feel as though you need it. And it needs you. You're each a missing piece of each other, a perfect balance.
diff --git a/game/overworld-town/loc-museum/main.twee b/game/overworld-town/loc-museum/main.twee
index af410569170f0b707f2c7ffd2e3d73fb11ee05b7..45350260dddca7c8e3ff6e5a8f3cba2b191f5633 100644
--- a/game/overworld-town/loc-museum/main.twee
+++ b/game/overworld-town/loc-museum/main.twee
@@ -420,7 +420,7 @@ The museum is closed. There's a sign on the door.
 		<br>
 	<</if>>
 	<<if $temple_spear_mission is 1 and !$temple_spear_mission_winter>>
-		<<ind>><<link [[Ask about the artifact spear|Museum Spear]]>><</link>>
+		<<ind>><<link [[Ask about the artefact spear|Museum Spear]]>><</link>>
 		<br>
 	<</if>>
 	<<if $museumAntiques.antiques.antiqueforestgem is "museum" and $daily.museumGreenGemTouch isnot 1>>
diff --git a/game/overworld-town/loc-museum/museumAntiques.twee b/game/overworld-town/loc-museum/museumAntiques.twee
index 372cd75a44bbceb484c2c8ff1a9337d8d498aa8f..c20844add179409b822247fd5c54b7cf8c1ff096 100644
--- a/game/overworld-town/loc-museum/museumAntiques.twee
+++ b/game/overworld-town/loc-museum/museumAntiques.twee
@@ -306,7 +306,7 @@ You look around the museum. The pedestals are grooved, as if awaiting specific o
 				journal: `"An ancient silver blade. Perhaps buried underground."`
 			},
 			"antiqueivorystatuette":{
-				hint:`"For an ivory statuette," Winter says while gesturing at an empty pedestal. "A unique religious artifact."<br><br> <<He>> turns away. "If it exists. The priests seem to think it does. It would be somewhere deep and dark, where no one dares to look."`,
+				hint:`"For an ivory statuette," Winter says while gesturing at an empty pedestal. "A unique religious artefact."<br><br> <<He>> turns away. "If it exists. The priests seem to think it does. It would be somewhere deep and dark, where no one dares to look."`,
 				museum:"The ivory statuette rests on a pedestal.",
 				name:"Ivory Statuette",
 				journal: `"An ancient ivory statuette. Perhaps buried underground."`
diff --git a/game/overworld-town/loc-office/agency.twee b/game/overworld-town/loc-office/agency.twee
index 4219b0ac1cab4440491373e4a4b3e0043204003d..18c3f9f43863c19e7b0c1d267cef499cf2e4dbd7 100644
--- a/game/overworld-town/loc-office/agency.twee
+++ b/game/overworld-town/loc-office/agency.twee
@@ -177,7 +177,7 @@ You're too embarrassed to show yourself. You run into the lobby and peek behind
 <<if $rng gte 81>>
 	You are relaxing on a comfy chair in the breakroom when three temps, a <<generatey1>><<person1>><<person>>, a <<generatey2>><<person2>><<person>>, and a <<generatey3>><<person3>><<person>> walk up to you.
 	<br>
-	"You're in my favorite chair," the <<person1>><<person>> says, standing over you. "Get lost."
+	"You're in my favourite chair," the <<person1>><<person>> says, standing over you. "Get lost."
 	<br><br>
 	<<link [[Comply|Office Agency Chair Comply]]>><<stress 6>><</link>><<gstress>>
 	<br>
diff --git a/game/overworld-town/loc-office/main.twee b/game/overworld-town/loc-office/main.twee
index 393841ca01039281b5ef67247c045c307fe5b77e..f66dd4736167e1b711d19067067e6c49f0e09684 100644
--- a/game/overworld-town/loc-office/main.twee
+++ b/game/overworld-town/loc-office/main.twee
@@ -9,7 +9,7 @@ The large building houses the offices of various businesses. You are in the lobb
 		<<officepassout>>
 	<</if>>
 <<else>>
-	There is a large koi pond in the center of the room, in front of the security desk. Behind it are four glass lifts that travel to the upper floors.
+	There is a large koi pond in the centre of the room, in front of the security desk. Behind it are four glass lifts that travel to the upper floors.
 	<br>
 	<<if Time.isWeekEnd()>>
 		It's the weekend, so other than security personnel, the custodial staff, and a few weekend warriors, the building is mostly empty.
diff --git a/game/overworld-town/loc-office/secretary.twee b/game/overworld-town/loc-office/secretary.twee
index c4e8dee5d6c126f98d70f42e60ba82ec34055476..e5f3c09f397dd6588d8c8a50c4cbec2d01598caa 100644
--- a/game/overworld-town/loc-office/secretary.twee
+++ b/game/overworld-town/loc-office/secretary.twee
@@ -45,7 +45,7 @@ You really aren't interested in doing much work,
 
 :: Office Secretary Work
 <<effects>>
-You decide to spend your time organizing the files as requested. The <<person1>><<persons>> computer is an absolute mess.
+You decide to spend your time organising the files as requested. The <<person1>><<persons>> computer is an absolute mess.
 <<rng>>
 <<if $rng gte 75>>
 	<br><br>
@@ -172,7 +172,7 @@ You decide you better get back to work before the <<person1>><<person>> returns.
 	<<endevent>>
 	<<officepassout>>
 <<else>>
-	You return to the desk and manage to finish the file organization, right as the <<person1>><<person>> arrives.
+	You return to the desk and manage to finish the file organisation, right as the <<person1>><<person>> arrives.
 	<br><br>
 	<<link [[Next|Office Secretary Finish]]>><<set $phase to 1>><</link>>
 <</if>>
@@ -289,7 +289,7 @@ You close the folder of pornography and finish working with the files. The <<per
 			<<link [[Threaten with pornography|Office Secretary Masturbation Threaten]]>><<def 1>><</link>><<defianttext>>
 			<br>
 		<</if>>
-		<<link [[Apologize|Office Secretary Masturbation Apologize]]>><</link>>
+		<<link [[Apologise|Office Secretary Masturbation Apologize]]>><</link>>
 	<</if>>
 <<else>>
 	You decide to stop and return to work before someone sees you.
diff --git a/game/overworld-town/loc-photography/main.twee b/game/overworld-town/loc-photography/main.twee
index 4da7ed4582dae5d935cde1d47bf91bcba500f9f0..123d806d937798a8de594c1a3c00137c4ab31096 100644
--- a/game/overworld-town/loc-photography/main.twee
+++ b/game/overworld-town/loc-photography/main.twee
@@ -145,7 +145,7 @@ Niki nods. "You know where I am if you change your mind."
 
 	<<elseif $fame.model gte 1000>>
 		<br>
-		<span class="green">A full-size picture of you hangs front and center, smiling back at you.</span>	
+		<span class="green">A full-size picture of you hangs front and centre, smiling back at you.</span>
 		<<stress -3>><<lstress>>
 		<<trauma -3>><<ltrauma>>
 		<<if $daily.photo is undefined >>
@@ -156,20 +156,20 @@ Niki nods. "You know where I am if you change your mind."
 		<<if $rng gte 21>>
 			<<rngWraith>>
 			<<if _wraithEvent>>
-				<span class="wraith">A full-size picture of a pale figure hangs front and center, smiling at you.</span>
+				<span class="wraith">A full-size picture of a pale figure hangs front and centre, smiling at you.</span>
 				<<trauma 6>><<gtrauma>>
 			<<else>>
 				<br>
-				<span class="green">A full-size picture of you hangs front and center, smiling back at you.</span>	
+				<span class="green">A full-size picture of you hangs front and centre, smiling back at you.</span>	
 			<</if>>
 		<<else>>
 			<br>
-			<span class="green">A full-size picture of you hangs front and center, smiling back at you.</span>
+			<span class="green">A full-size picture of you hangs front and centre, smiling back at you.</span>
 		<</if>>
 		
 	<<elseif $fame.model gte 1000 and $trauma gte (($traumamax / 10) * 7)>>
 		<br>
-		<span class="red">A full-size picture of you hangs front and center, empty eyes and a blank face stare back at you.</span>
+		<span class="red">A full-size picture of you hangs front and centre, empty eyes and a blank face stare back at you.</span>
 		<<stress -3>><<lstress>>
 		<<if $daily.photo is undefined >>
 			<<set $daily.photo to true>>
@@ -177,7 +177,7 @@ Niki nods. "You know where I am if you change your mind."
 
 	<<elseif $fame.model gte 1000 and $trauma gte (($traumamax / 10) * 7) and $daily.photo is true>>
 		<br>
-		<span class="red">A full-size picture of you hangs front and center, empty eyes and a blank face stare back at you.</span>
+		<span class="red">A full-size picture of you hangs front and centre, empty eyes and a blank face stare back at you.</span>
 	<</if>>
 	<br><br>
 
diff --git a/game/overworld-town/loc-photography/model.twee b/game/overworld-town/loc-photography/model.twee
index 10fce07cf6826a2c8d2090d30e72bbfaa3a3e19a..a5577729383ff1e6cc8b02b8839ff1ebb7b20029 100644
--- a/game/overworld-town/loc-photography/model.twee
+++ b/game/overworld-town/loc-photography/model.twee
@@ -186,7 +186,7 @@ You put on the $worn.upper.name, and emerge from behind the screen.
 			"<<EnumeratedGroup>> sit to one side, watching you. One of them, a <<person1>><<person>>, sips from a glass of wine.",
 		], [ /* Audience size 5 strings */
 			"<<EnumeratedGroup>> sit to one side, chatting. One of them, a <<person1>><<person>>, watches you without breaking conversation.",
-			"<<EnumeratedGroup>> sit to one side, chatting. One of them, a <<person1>><<person>>, ignores <<his>> neighbors and stares at you.",
+			"<<EnumeratedGroup>> sit to one side, chatting. One of them, a <<person1>><<person>>, ignores <<his>> neighbours and stares at you.",
 		], [ /* Audience size 6 strings */
 			"<<EnumeratedGroup>> sit to one side, watching you. One of them, a <<person1>><<person>>, chats with the <<person2>><<person>> beside <<person1>><<him>>, but watches you all the while.",
 			"<<EnumeratedGroup>> sit to one side, watching you. One of them, a <<person1>><<person>>, licks <<his>> lips.",
diff --git a/game/overworld-town/loc-pirates/attack.twee b/game/overworld-town/loc-pirates/attack.twee
index 1d6569da64150e638c1aca9ddde0f5935d15cda7..bef91cd5ef8649888babab4329f4c2af96b3077b 100644
--- a/game/overworld-town/loc-pirates/attack.twee
+++ b/game/overworld-town/loc-pirates/attack.twee
@@ -286,7 +286,7 @@ The crowd falls quiet for a moment, then bursts into uproarious laughter. "Pirat
 <<effects>>
 
 <<if $speech_attitude is "meek">>
-    "I'm so cold and all alone," you say. "So defenseless. You're surely not going to take advantage, are you?"
+    "I'm so cold and all alone," you say. "So defenceless. You're surely not going to take advantage, are you?"
     <br><br>
     The <<person1>><<person>> has to restrain one of the passengers. "Get <<phim>> inside," <<he>> says. "Before <<pher>> naivety causes trouble."
     <br><br>
diff --git a/game/overworld-town/loc-pirates/widgets.twee b/game/overworld-town/loc-pirates/widgets.twee
index 019d6cbed381d020dc8b90a6c1a9fdb615144a82..97c5ee724944cc7ef996e78424524c0fadb187e6 100644
--- a/game/overworld-town/loc-pirates/widgets.twee
+++ b/game/overworld-town/loc-pirates/widgets.twee
@@ -241,7 +241,7 @@
 		"Oi," a <<person>> calls, waving you over. <<Hes>> hunched over a table, clutching a bottle like it's a lifeline. "Take a listen, <<lass>>. You're gonna want to... really want to hear this one."
 		<br><br>
 
-		<<He>> attempts to take a draw from the bottle, missing <<his>> mouth by a good margin. "Heard this one at a pub," <<he>> chuckles. "What's a... get this... what's a pirate's favorite letter?"
+		<<He>> attempts to take a draw from the bottle, missing <<his>> mouth by a good margin. "Heard this one at a pub," <<he>> chuckles. "What's a... get this... what's a pirate's favourite letter?"
 		<br><br>
 
 		<<link [[X!|Pirate Scum Cabin Letter]]>><<set $phase to "X">><</link>>
@@ -322,4 +322,4 @@
 	<br>
 	<<pass 1 hour>>
 	<<trauma 6>><<passout>>
-<</widget>>
\ No newline at end of file
+<</widget>>
diff --git a/game/overworld-town/loc-pub/main.twee b/game/overworld-town/loc-pub/main.twee
index ba7bf6913d31ed1cda8bd17da1f360db184db957..dba1be01eba329c01f2207e42bf0c0d4323633ca 100644
--- a/game/overworld-town/loc-pub/main.twee
+++ b/game/overworld-town/loc-pub/main.twee
@@ -872,7 +872,7 @@ You withdraw your hand and give <<him>> a scandalised look.
 	You count the tips in the jar. You make <<set $_tip to random(5,100)>><<moneyGain $_tip true true>>. <<crime "thievery">>
 
 <<else>>
-	The <<person>> lands one last slap on your stinging cheek. "And that, ladies and gentlemen, is what happens to brats who try to steal from good people who are just trying to make an honest living." The crowd cheers. Several shoot you dirty looks as you stand back up. You skulk out the back to avoid the judgmental stares. <<famegood -10>><<famesocial -5>>
+	The <<person>> lands one last slap on your stinging cheek. "And that, ladies and gentlemen, is what happens to brats who try to steal from good people who are just trying to make an honest living." The crowd cheers. Several shoot you dirty looks as you stand back up. You skulk out the back to avoid the judgemental stares. <<famegood -10>><<famesocial -5>>
 <</if>>
 <<silently>><<clotheson>><</silently>>
 <<endcombat>>
diff --git a/game/overworld-town/loc-school/canteen.twee b/game/overworld-town/loc-school/canteen.twee
index f8a8cc568acd20b6fec5ae806ed3765cdfeaa5e5..45de6470dbd92e60cfaf99930a924ca5b00b7327 100644
--- a/game/overworld-town/loc-school/canteen.twee
+++ b/game/overworld-town/loc-school/canteen.twee
@@ -145,7 +145,8 @@ You are in the school canteen.
 						<</if>>
 					<</if>>
 				<</if>>
-				<<if C.npc.Kylar.state is "active" and $daily.school.lunchEaten isnot 1 and $exposed lte 0>>
+				<<set _kylarLocation to getKylarLocation()>>
+				<<if $exposed lte 0 && _kylarLocation.area is "canteen">>
 					Kylar sits alone, stabbing food with a fork.
 					<br>
 					<<foodicon "eat">><<link [[Eat with Kylar (0:20)|Canteen Lunch Kylar]]>><<pass 20>><<set $daily.school.lunchEaten to 1>><<npcincr Kylar love 1>><<npcincr Kylar rage -1>><</link>><<glove>><<lksuspicion>>
diff --git a/game/overworld-town/loc-school/changing-rooms-widgets.twee b/game/overworld-town/loc-school/changing-rooms-widgets.twee
index cb7c06caaf3c72a449b9647c6499a46ffb22af31..0a678c20ee8e81b2bac3009c46b680de6f9556ab 100644
--- a/game/overworld-town/loc-school/changing-rooms-widgets.twee
+++ b/game/overworld-town/loc-school/changing-rooms-widgets.twee
@@ -38,7 +38,7 @@
 					<<if $changingRoomGender is "boys">><<generatesm1>><<else>><<generatesf1>><</if>><<person1>>
 					<<switch $schoolrep.herm>>
 						<<case 0>> No one gives you a second glance, unaware of your hermaphroditism.
-						<<case 1>> A <<person>> glances at your crotch. <<He>> whispers something to <<his>> friend, who shakes <<his>> head<<print either (", unconvinced", " skeptically", " doubtfully", " and rolls <<his>> eyes", " and laughs")>>. <span class="purple">Rumours about your genitalia are beginning to spread.</span>
+						<<case 1>> A <<person>> glances at your crotch. <<He>> whispers something to <<his>> friend, who shakes <<his>> head<<print either (", unconvinced", " sceptically", " doubtfully", " and rolls <<his>> eyes", " and laughs")>>. <span class="purple">Rumours about your genitalia are beginning to spread.</span>
 						<<case 2>> A <<person>> glances at your crotch. <<He>> whispers something to <<his>> friend, who <<print either ("shakes <<his>> head, unconvinced", "appears convinced", "nods thoughtfully", "eyes you warily", "snickers")>>. <span class="purple">Rumours about your genitalia are beginning to spread.</span>
 						<<case 3>> Some glance at your crotch. A few <<print either("point at you and whisper to their friends", "make rude gestures", "stare for an uncomfortably long period of time", "look as though they're going to say something, but remain quiet", "ask intrusive questions about what's in your pants")>>. <span class="pink">They've heard the rumours.</span>
 						<<case 4>> Some glance at your crotch. A <<person>> points at you and <<print either("laughs", "cracks a rude joke", "elbows <<his>> friend", "mocks you")>> as you head to your locker. <span class="pink">They've heard the rumours.</span>
@@ -97,7 +97,7 @@
 			<<elseif _topless and $changingRoomGender is "girls" and $player.breastsize lte 2>>
 				You overhear some of the $changingRoomGender whisper about your exposed <<breasts>>. One of them addresses you directly.
 				"Damn, I've <<print either("seen boys with", "had boyfriends with", "slept with boys that had", "fucked boys with")>> bigger tits than you."
-				They don't realize you really are a <<girl>>.
+				They don't realise you really are a <<girl>>.
 			<<else>>
 				One of the $changingRoomGender looks at you <<print either("quizzically", "curiously", "strangely", "contemplatively")>>.
 				"Wow, you <<print either("really", "kinda", "almost", "")>> look like a <<girl>> wearing that."
diff --git a/game/overworld-town/loc-school/classes/english-events.twee b/game/overworld-town/loc-school/classes/english-events.twee
index 748b46121687cd0cba73cb0c6a76b8a4dc3a4344..f689da93d7139c221178c648d752a4c7802bc28d 100644
--- a/game/overworld-town/loc-school/classes/english-events.twee
+++ b/game/overworld-town/loc-school/classes/english-events.twee
@@ -295,7 +295,7 @@ You nod. "Alright," Doren says. <<He>> doesn't sound convinced.
 	<<if currentSkillValue('english') gte 700>>
 		<<set $skulduggerydifficulty to 200>><<skulduggerycheck "silent">>
 		<<if $skulduggerysuccess is 1>>
-			You pretend to read, while making up a fake passage, imitating the tone, diction and meter of the original text.
+			You pretend to read, while making up a fake passage, imitating the tone, diction and metre of the original text.
 			<<if $promiscuity gte 66 or $exhibitionism gte 66>>
 				Just for fun, you read the leading <<print $player.gender_appearance is "m"? "boy" : "girl">> in an exaggeratedly sexual manner
 				making some sentences sound overtly seductive, while making others sound like bawdy double-entendres.
diff --git a/game/overworld-town/loc-school/classes/english.twee b/game/overworld-town/loc-school/classes/english.twee
index b7d037379f3e4f2bd33cf49594cce2c78f414130..6d79c57721a9ea836f25145f0acb6963b011f27d 100644
--- a/game/overworld-town/loc-school/classes/english.twee
+++ b/game/overworld-town/loc-school/classes/english.twee
@@ -108,7 +108,8 @@
 	<</if>>
 	You spot Sydney near a group of students.
 	<<if !$englishPlayLate>>
-		<<if $englishPlayReadiness gte 56 and $englishPlayRoles.SydneyKnown and $englishPlayRoles.Kylar isnot "none" and $englishPlayRoles.KylarKnown and !$englishPlayDoubleRehearsal>>
+		<<set _kylarLocation to getKylarLocation()>>
+		<<if _kylarLocation.area is "english" and _kylarLocation.state is "dual_rehearsal">>
 			<span class="blue">Kylar is with <<nnpc_him "Sydney">>.</span>
 			<br>
 			<<link [[Rehearse with Kylar and Sydney (2:00)|English Play Rehearse Both]]>><<pass 30>><<englishskill 18>><</link>><<gggenglish>><<gggreadiness>>
@@ -123,7 +124,7 @@
 			<<link [[Approach Sydney|English Play Intro Sydney]]>><</link>>
 		<</if>>
 		<br>
-		<<if $englishPlayRoles.Kylar isnot "none" and !$englishPlayRoles.KylarKnown>>
+		<<if _kylarLocation.area is "english" and _kylarLocation.state is "rehearsal">>
 			Kylar stands alone in a corner. Others seem to be avoiding <<nnpc_him "Kylar">>.
 			<br>
 			<<link [[Approach Kylar|English Play Intro Kylar]]>><</link>>
diff --git a/game/overworld-town/loc-school/classes/maths-events.twee b/game/overworld-town/loc-school/classes/maths-events.twee
index 76e089484588c323afc992711e9a8dae4b771e11..b06ee47901529005ad08e163959617954ae68f2c 100644
--- a/game/overworld-town/loc-school/classes/maths-events.twee
+++ b/game/overworld-town/loc-school/classes/maths-events.twee
@@ -1993,7 +1993,7 @@ You clear your throat. Whitney, too busy fumbling with your $worn.upper.name to
 	<<else>>
 		Your thighs twitch a little as <<he>> begins to finger you beneath the desk. <<He>> pistons two fingers in and out of your quim as quickly as <<he>> can without drawing attention to <<himself>>, pausing occasionally to grind <<his>> thumb against your clit. You struggle to control your breathing as <<he>>
 	<</if>>
-	looks back and forth between River's back and your face, clearly savoring the effect <<hes>> having on you.
+	looks back and forth between River's back and your face, clearly savouring the effect <<hes>> having on you.
 	<<ggarousal>>
 	<br><br>
 
@@ -2132,7 +2132,7 @@ You can feel Whitney getting close to cumming, <<his>> <<if _whitney.penis isnot
 <br><br>
 
 <<if currentSkillValue("handskill") gte random(1, 600)>>
-	<span class="green">You manage to bring Whitney over the edge</span> just before River finishes <<nnpc_his "River">> demonstration on the whiteboard, and lean back in your seat to watch the fruits of your labor.
+	<span class="green">You manage to bring Whitney over the edge</span> just before River finishes <<nnpc_his "River">> demonstration on the whiteboard, and lean back in your seat to watch the fruits of your labour.
 	<br><br>
 
 	Keeping your arm low, you continue pumping Whitney's
diff --git a/game/overworld-town/loc-school/english-play.twee b/game/overworld-town/loc-school/english-play.twee
index 6ef888c215855a35952fc5e4167fa7f9faf9cba7..97add661656e677648436ecd5f7a7a403bac0d31 100644
--- a/game/overworld-town/loc-school/english-play.twee
+++ b/game/overworld-town/loc-school/english-play.twee
@@ -1695,7 +1695,7 @@ Sydney and <<if $englishPlayKylarReplace>>the <<person2>><<person>><<else>>Kylar
 		The show continues as Cass and Taylor make their escape. The act ends as you sit for your moonlit Christmas dinner with Cass, only for your <<sterlingFather>>, <<sterlingTitle>> Sterling, to barge through the door.
 	<<case "Sterling">>
 		<<if $athleticsSuccess>>
-			You forgo the monologue entirely, storming onto the stage with vigour. You deliver a vicious kick right to the center of the door prop. <span class="green">It flies off its hinges,</span> noisily clattering to the ground.
+			You forgo the monologue entirely, storming onto the stage with vigour. You deliver a vicious kick right to the centre of the door prop. <span class="green">It flies off its hinges,</span> noisily clattering to the ground.
 			<br><br>
 
 			Sydney and <<if $englishPlayKylarReplace>>the <<person2>><<person>><<else>>Kylar<</if>> look to you with genuine surprise, causing them to halt their lines immediately. You add heavy breathing to your performance for effect.
diff --git a/game/overworld-town/loc-school/hallways.twee b/game/overworld-town/loc-school/hallways.twee
index 89c75c90def556e6f0a9976d41758fedaafa8eb4..7d8925d300c835740aeaec885f24ca5757e2fb7d 100644
--- a/game/overworld-town/loc-school/hallways.twee
+++ b/game/overworld-town/loc-school/hallways.twee
@@ -550,7 +550,7 @@ You start checking the lockers, and soon find one that has been left unlocked. Y
 	<<gstress>><<garousal>><<stress 6>><<arousal 600>>
 	<br><br>
 
-	Once their voices subside, you gently push the door. It doesn't budge. You push harder. It still doesn't move. <<He>> locked it this time. Though your movement is restricted, you feel around the darkness for something that could help, and realise there's a cool draft around your feet. Investigating further, you find that the back of the locker is missing, and you can feel the brick wall of the school. The lower portion of which is coming loose.
+	Once their voices subside, you gently push the door. It doesn't budge. You push harder. It still doesn't move. <<He>> locked it this time. Though your movement is restricted, you feel around the darkness for something that could help, and realise there's a cool draught around your feet. Investigating further, you find that the back of the locker is missing, and you can feel the brick wall of the school. The lower portion of which is coming loose.
 	<br><br>
 	<<endevent>>
 
@@ -558,7 +558,7 @@ You start checking the lockers, and soon find one that has been left unlocked. Y
 		<<link [[Kick through|Hallways Exposed Tentacles]]>><<set $molestationstart to 1>><</link>>
 		<br>
 	<<else>>
-		You break away the brickwork, and the draft increases in strength. Knocking away all the loose bricks leaves a hole maybe just big enough for you. You put one leg through, then the other, then slowly wiggle your way further down.
+		You break away the brickwork, and the draught increases in strength. Knocking away all the loose bricks leaves a hole maybe just big enough for you. You put one leg through, then the other, then slowly wiggle your way further down.
 		<br><br>
 
 		<<link [[Next|Industrial Drain]]>><<set $eventskip to 1>><</link>>
@@ -653,7 +653,7 @@ You run to the window and throw it open. You don't have enough time to be sure,
 
 	<<tentaclestart 4 15>>
 
-	You break away the brickwork, and the draft increases in strength. Knocking away all the loose bricks leaves a hole maybe just big enough for you. You put one leg through, then the other, then slowly wiggle your way further down. You're wondering if the school has a basement when something strokes your <<bottom>>.
+	You break away the brickwork, and the draught increases in strength. Knocking away all the loose bricks leaves a hole maybe just big enough for you. You put one leg through, then the other, then slowly wiggle your way further down. You're wondering if the school has a basement when something strokes your <<bottom>>.
 	<br><br>
 <</if>>
 
@@ -2462,7 +2462,7 @@ The <<person1>> looks at you with concern, <<his>> anger begins to turn into sad
 		<<link [[Next|Hallways]]>><<endevent>><<set $eventskip to 1>><</link>>
 		<br>
 	<<elseif $delinquency gte 400>>
-		The teacher looks skeptical, given your reputation, but does go to help.
+		The teacher looks sceptical, given your reputation, but does go to help.
 		<br><br>
 		By the time you get back, the teacher is marching the <<person1>><<person>> down the hallway. <<lstress>><<stress -2>><<famegood 1>>
 		<br><br>
@@ -2715,7 +2715,7 @@ The group of students fight to pull down your <<if setup.clothes.lower[clothesIn
 	You turn around, letting everyone get a look at your fully naked butt and exposed <<genitals>>.<<ggarousal>><<arousal 1200>>
 	<br><br>
 
-	Several students have their phones out, recording your whole display. You realize that most of the school will see this soon. You are surrounded by your peers, seeing you in this state of undress.
+	Several students have their phones out, recording your whole display. You realise that most of the school will see this soon. You are surrounded by your peers, seeing you in this state of undress.
 	<br><br>
 
 
diff --git a/game/overworld-town/loc-school/library-functions.js b/game/overworld-town/loc-school/library-functions.js
new file mode 100644
index 0000000000000000000000000000000000000000..c933fd3a4bb4ad024e78925ddccd4fa763fdc248
--- /dev/null
+++ b/game/overworld-town/loc-school/library-functions.js
@@ -0,0 +1,25 @@
+/* eslint-disable no-undef */
+/**
+ * Determine Kylar's location,
+ * when Kylar has a centralised scheduling system, we could avoid logic specific to Kylar in the library-functions file.
+ *
+ * [KylarScheduleRefactor]
+ *
+ * @returns {"library"|"stalk"|"english"|"elsewhere"|"inactive"}
+ */
+function getKylarLibraryState() {
+	// state could be inactive-undefined, active or prison. We only want active.
+	if (C.npc.Kylar.state !== "active") return "inactive";
+
+	if (V.schoolstate === "afternoon" && isKylarInPlayRole() && isKylarRehearsing()) {
+		return "english";
+	} else if (V.schoolstate === "lunch" && V.daily.school.lunchEaten === 1) {
+		// During lunch, Kylar currently will only be in the library when raining, or stalking.
+		const isRaining = V.weather === "rain" || V.weather === "snow";
+		if (isRaining) return "library";
+		const isStalking = V.daily.kylar.libraryStalk && C.npc.Sydney.active === "active";
+		if (isStalking) return "stalk";
+	}
+	return "elsewhere";
+}
+window.getKylarLibraryState = getKylarLibraryState;
diff --git a/game/overworld-town/loc-school/library-widgets.twee b/game/overworld-town/loc-school/library-widgets.twee
new file mode 100644
index 0000000000000000000000000000000000000000..f09ddeee775e37879b09c32f360f5e474e2d4ab7
--- /dev/null
+++ b/game/overworld-town/loc-school/library-widgets.twee
@@ -0,0 +1,95 @@
+:: Library Widgets [widget]
+/**
+	Widget for determining Kylar related options
+ */
+<<widget "kylarLibrary">>
+	<<if $exposed gt 0>>
+		<<exit>>
+	<</if>>
+
+	<<set $_kylarLocation to getKylarLocation()>>
+	<<if $_kylarLocation.area is "library">>
+		<<switch $_kylarLocation.state>>
+			<<case "library">>
+				Kylar sits at a desk, scribbling something.
+				<br>
+				<<furnitureicon "deskAntique.png">><<link [[Approach Kylar|Kylar Library]]>><<set $kylar_text_trigger to true>><</link>>
+				<br><br>
+			<<case "stalk">>
+				Kylar sits at a desk,
+				<<if _sydney_location is "library">>
+					glancing towards Sydney,
+				<</if>>
+				scribbling something.
+				<br>
+				<<furnitureicon "deskAntique.png">><<link [[Approach Kylar|Kylar Library Jealousy]]>><<set $kylar_text_trigger to true>><</link>>
+				<br><br>
+			<<case "english">>
+				Kylar isn't here. There's a note on the desk <<nnpc_he "Kylar">> usually sits at. It reads "<span class="gold">Meet me in the English classroom.</span>"
+				<br><br>
+			<<default>>
+				<<if $options.debugdisable>>
+					Kylar is in a state of being at the desk <<she>> usually sits at, and not there. There is a problem with the space-time continuity!
+					<br>
+					<span class="red">You reflect on the problem and inform Vrelnir that Kylar has the wrong library state for <<her>> location.</span>
+				<</if>>
+		<</switch>>
+	<</if>>
+<</widget>>
+
+<<widget "kylarLibraryStalkChat1">>
+	<<if $speech_attitude is "bratty">>
+		"Stealing a glance at Sydney?" you say with a sneer. "Something up with you?" You place a hand on your hip as Kylar avoids your gaze.
+	<<elseif $speech_attitude is "meek">>
+		"K-Kylar, I s-saw you staring at Sydney..." you say. "I-Is something wrong?" You clasp your hands together at your chest. Kylar avoids your gaze.
+	<<else>>
+		"I saw you staring at Sydney," you say. "Why is that?"
+	<</if>>
+	<br><br>
+
+	"Y-You... S-Sydney..." he pauses, meeting your eyes. "W-What do you see in <<him>>? What does <<he>> have that I don't?
+	Why do you spend so much time talking to <<him>> and not me?!" <<he>> yells, <<his>> voice quivering.
+	
+	/* Add chance for Sydney to shout at Kylar for yelling */
+	<<sydneySchedule>>
+	<<if _sydney_location is "library">>
+		<br><br>
+		"Be quiet, you are in a library!" Sydney shouts from the desk.
+		<br><br>
+	<</if>>
+	
+	Kylar grabs your hands tightly and looks at you with a crazed expression. You wince and yank your hands out of <<his>> grasp. <<gpain>>
+	<br><br>
+
+	Kylar looks at you and frowns. <<He>> mutters something, then sits down and stares at <<his>> sketchbook. <<npcincr "Kylar" "rage" 5>><<ggksuspicion>>
+	<br><br>
+<</widget>>
+
+<<widget "kylarLibraryStalkTease1">>
+	You lean closely to Kylar and raise your hand to whisper something lewd into <<his>> ear, but stop when you notice <<him>> staring at Sydney instead of you.
+
+	<<if $speech_attitude is "bratty">>
+		You frown and snap your fingers. "You're looking at Sydney and not me?" Kylar jumps. <<He>> scrambles back on to <<his>> seat and turns to you.
+	<<elseif $speech_attitude is "meek">>
+		You pout and stare Kylar down. "W-Why aren't you paying attention to me?" Your words startle <<him>>, returning <<his>> attention to you.
+	<<else>>
+		You frown. "Why are you looking at <<him>> now?" Kylar almost jumps. <<He>> turns <<his>> face towards you.
+	<</if>>
+	<br><br>
+
+	"Y-You... S-Sydney..." he pauses, trying to avoid looking at you. Suddenly, <<he>> whips <<his>> head around to look at you.
+	"W-What do you see in <<him>>? What does <<he>> have that I don't? Why do you spend so much time talking to <<him>> and not me?!" <<he>> yells, <<his>> voice quivering.
+
+	/* Add chance for Sydney to shout at Kylar for yelling */
+	<<sydneySchedule>>
+	<<if _sydney_location is "library">>
+		<br><br>
+		"Be quiet, you are in a library!" Sydney shouts from the desk.
+		<br><br>
+	<</if>>
+	
+	Kylar grabs your hands tightly and looks at you with a crazed expression. You wince and yank your hands out of <<his>> grasp. <<pain 2>><<gpain>>
+	<br><br>
+	
+	Kylar looks at you and frowns. <<He>> mutters something, then sits down, and stares at <<his>> sketchbook. <<npcincr "Kylar" "rage" 5>><<ggksuspicion>>
+<</widget>>
diff --git a/game/overworld-town/loc-school/library.twee b/game/overworld-town/loc-school/library.twee
index 83a1e49f6bf04363b4e27918fc331aa674afd4d9..25d5e29ce34c13fa0b696c13ea358686ce5ace5b 100644
--- a/game/overworld-town/loc-school/library.twee
+++ b/game/overworld-town/loc-school/library.twee
@@ -131,7 +131,7 @@ Next to it is a small basket with returned and not yet sorted books.
 		<br>
 		"Yes. If you do it too often, you'll go blind!"
 		<br>
-		"Is that why you're wearing these colors?"
+		"Is that why you're wearing these colours?"
 	<<elseif $rng gte 26>>
 		"Did you see that student recently? You-know-who, the talk of the school."
 		<br>
@@ -226,22 +226,9 @@ Next to it is a small basket with returned and not yet sorted books.
 			<<icon "projectMaths.png">><<link [[Approach|Maths Library Student]]>><</link>>
 			<br><br>
 		<</if>>
-		<<if $exposed lte 0 and C.npc.Kylar.state is "active" and ($weather is "rain" or $weather is "snow") and $schoolstate is "lunch" and $daily.school.lunchEaten is 1>>
-			Kylar sits at a desk, scribbling something.
-			<br>
-			<<furnitureicon "deskAntique.png">><<link [[Approach Kylar|Kylar Library]]>><<set $kylar_text_trigger to true>><</link>>
-			<br><br>
-		<<elseif $englishPlay is "ongoing" and $englishPlayRoles.Kylar isnot "none" and $englishPlayRoles.KylarKnown and $exposed lte 0 and ($weather is "rain" or $weather is "snow") and $schoolstate is "afternoon">>
-			<<if $englishPlayReadiness gte 56 and $englishPlayRoles.SydneyKnown and !$englishPlayDoubleRehearsal>>
-				Kylar isn't here. There's a note on the desk <<nnpc_he "Kylar">> usually sits at. It reads "<span class="gold">Meet me in the English classroom.</span>"
-				<br><br>
-			<<else>>
-				Kylar sits at a desk, scribbling something.
-				<br>
-				<<furnitureicon "deskAntique.png">><<link [[Approach|Kylar Library]]>><<set $kylar_text_trigger to true>><</link>>
-				<br><br>
-			<</if>>
-		<</if>>
+		<!-- Kylar in the library -->
+		<<kylarLibrary>>
+
 		<<projectoptions>>
 		<<if $exposed gte 1>>
 			<<scienceicon>><<link [[Study science (0:20)|Library Study Exposed]]>><<pass 20>><<set $phase to 1>><</link>><<gscience>>
diff --git a/game/overworld-town/loc-school/main.twee b/game/overworld-town/loc-school/main.twee
index e563bf24f2f18d59ed9a6ac7983ffa26babc862c..f301b5ed2ae6e5af8d9b15740c8b1a2e8c1ad226 100644
--- a/game/overworld-town/loc-school/main.twee
+++ b/game/overworld-town/loc-school/main.twee
@@ -148,20 +148,19 @@
 			<<fenceicon>><<link [[Climb over the fence to the industrial district (0:02)|School Rear Fence Exit]]>><<pass 2>><</link>>
 			<br>
 		<<else>>
-			<<if $exposed lte 0 and C.npc.Kylar.state is "active" and $weather isnot "rain" and $weather isnot "snow" and $schoolstate is "lunch">>
-				Kylar sits on a stump and stares at the ground.
-				<br>
-				<<schoolicon "stump">><<link [[Approach|Kylar Courtyard]]>><<set $kylar_text_trigger to true>><</link>>
-				<br><br>
-			<<elseif $englishPlay is "ongoing" and $englishPlayRoles.Kylar isnot "none" and $englishPlayRoles.KylarKnown and $exposed lte 0 and $weather isnot "rain" and $weather isnot "snow" and $schoolstate is "afternoon">>
-				<<if $englishPlayReadiness gte 56 and $englishPlayRoles.SydneyKnown and !$englishPlayDoubleRehearsal>>
+			<<if $exposed lte 0>>
+				<<set _kylarLocation to getKylarLocation()>>
+				<<if _kylarLocation.area is "rear_courtyard">>
+					<<switch _kylarLocation.state>>
+						<<case "english" "stump">>
+							Kylar sits on a stump and stares at the ground.
+							<br>
+							<<schoolicon "stump">><<link [[Approach|Kylar Courtyard]]>><<set $kylar_text_trigger to true>><</link>>
+							<br><br>
+					<</switch>>
+				<<elseif _kylarLocation.area is "english" and _kylarLocation.state is "play">>
 					Kylar isn't here. You look around, and catch a glimpse of <<nnpc_him "Kylar">> through one of the school's windows. <span class="gold">It looks like <<nnpc_hes "Kylar">> in the English classroom.</span>
 					<br><br>
-				<<else>>
-					Kylar sits on a stump and stares at the ground.
-					<br>
-					<<schoolicon "stump">><<link [[Approach|Kylar Courtyard]]>><<set $kylar_text_trigger to true>><</link>>
-					<br><br>
 				<</if>>
 			<</if>>
 			<<if $exposed lte 0 and $schoolstate is "lunch">>
@@ -1695,7 +1694,7 @@ You walk over to the <<person1>><<person>>, and sit beside <<him>>.
 
 	<<He>> climbs to <<his>> feet and tries to laugh it off, but is too embarrassed to look at you.
 <<else>>
-	<<He>> nods at <<his>> lap while turning a deeper shade of red. You try to bring <<him>> out of <<his>> shell, but <<hes>> too shy. <<His>> friend finds <<his>> awkwardness humorous.
+	<<He>> nods at <<his>> lap while turning a deeper shade of red. You try to bring <<him>> out of <<his>> shell, but <<hes>> too shy. <<His>> friend finds <<his>> awkwardness humourous.
 <</if>>
 <br><br>
 
diff --git a/game/overworld-town/loc-school/toilets-gloryhole.twee b/game/overworld-town/loc-school/toilets-gloryhole.twee
index 7923ab833844ea8d8de68f3b902d1bff64c16479..290a6b4b2bb8bdea2269b9315a7ad77add4a08ce 100644
--- a/game/overworld-town/loc-school/toilets-gloryhole.twee
+++ b/game/overworld-town/loc-school/toilets-gloryhole.twee
@@ -114,7 +114,7 @@
 		<<link [[Grope the janitor!|School Gloryhole Janitor Seduce]]>><</link>><<promiscuous2>>
 	<<else>>
 		<<if _rnd lte _prob>>
-			<<generatec1>><<person1>>
+			<<generatey1>><<person1>>
 			You hear footsteps approach, then giggling. A
 			<<if $NPCList[0].penis isnot "none">>
 			$NPCList[0].penisdesc pokes through the hole.
diff --git a/game/overworld-town/loc-school/widgets-events.twee b/game/overworld-town/loc-school/widgets-events.twee
index f3d438519dd77a927d256b74adafd4fdf020850a..f9f6e0cf7bdb68ba40a6e93e23691e58f66dfb07 100644
--- a/game/overworld-town/loc-school/widgets-events.twee
+++ b/game/overworld-town/loc-school/widgets-events.twee
@@ -1929,7 +1929,7 @@
 			Someone throws an arm around your shoulder while you're walking. It's Whitney, with several of <<his>> friends clustering around you.
 			<br><br>
 
-			Before you realize what's happening, Whitney turns and shoves you across the hall. You stumble into the lockers.<<gpain>><<violence 6>>
+			Before you realise what's happening, Whitney turns and shoves you across the hall. You stumble into the lockers.<<gpain>><<violence 6>>
 			<br><br>
 
 			"Try staying out of the way next time!" Whitney calls as <<he>> and <<his>> group continue walking. You hear a few of them laughing.<<gstress>><<stress 6>>
diff --git a/game/overworld-town/loc-school/widgets.twee b/game/overworld-town/loc-school/widgets.twee
index c678ffc8775b11bf9702845e9208b281588cd3f0..e701a92d7103a5e687c6b5b3355afa95ff85f56d 100644
--- a/game/overworld-town/loc-school/widgets.twee
+++ b/game/overworld-town/loc-school/widgets.twee
@@ -2253,9 +2253,9 @@
 
 <<widget "englishstart">>
 	<<endevent>>
-	<<set _kylar to statusCheck("Kylar")>>
-
-	<<if _kylar.state is "active">>
+	<<set _kylarLocation to getKylarLocation()>>
+	<<if _kylarLocation.area is "english">>
+		<<set _kylar to statusCheck("Kylar")>>
 		<<if $kylarenglish is 0>>
 			<<set $kylarenglishstate to "watching">>
 			<<npc Kylar>><<person1>>You feel Kylar stare at you as you take your seat, but <<he>> looks away whenever you glance at <<him>>.
@@ -2309,7 +2309,6 @@
 			<<else>>
 				<<set $kylarenglishstate to "absent">>
 			<</if>>
-
 		<<elseif $kylarenglish is 2>>
 			<<if _kylar.love gte 60>>
 				<<set $kylarenglishstate to "active">>
diff --git a/game/overworld-town/loc-sea/events.twee b/game/overworld-town/loc-sea/events.twee
index 66cd51da5cbc70561a0db07092ab3f1c0a5d64f5..496e4e77db086316fcbddaa5a3a34f13378f1ac5 100644
--- a/game/overworld-town/loc-sea/events.twee
+++ b/game/overworld-town/loc-sea/events.twee
@@ -1099,7 +1099,7 @@ You leave the chest where it lies, and return to the water.
 :: Sea Chest Open
 <<effects>>
 
-You open the lock, laying bare the treasure inside. A variety of stolen jewelry. It's still dry.
+You open the lock, laying bare the treasure inside. A variety of stolen jewellery. It's still dry.
 <<if $rng gte 100>>
 	Those look like actual diamonds. These could be worth a lot to a fence.
 	<<set $blackmoney += 1200>>
diff --git a/game/overworld-town/loc-shop/main.twee b/game/overworld-town/loc-shop/main.twee
index 0d035b0af9b0dcfed4880b420948d50cc33e51f9..f995013438bb0a70f03f489430eca9bb47fe4136 100644
--- a/game/overworld-town/loc-shop/main.twee
+++ b/game/overworld-town/loc-shop/main.twee
@@ -727,7 +727,7 @@ You decide to buy the hamper.
 :: Shop Eden Gift
 <<effects>>
 
-You walk around in the shopping centre, looking for something you think Eden would like. Your eyes are drawn to a cozy hunting jacket.
+You walk around in the shopping centre, looking for something you think Eden would like. Your eyes are drawn to a cosy hunting jacket.
 <br><br>
 <<if $money gte 3000>>
 	<<link [[Buy it (£30)|Shop Eden Christmas]]>><<set $christmas_gift_eden to 1>><<set $money -= 3000>><</link>>
diff --git a/game/overworld-town/loc-street/cliff.twee b/game/overworld-town/loc-street/cliff.twee
index acaa9a5e6d3ae27f4e9a7ff54c9681a576a53185..20f4dc1272fc729aa7924f4d448141c386ce2e38 100644
--- a/game/overworld-town/loc-street/cliff.twee
+++ b/game/overworld-town/loc-street/cliff.twee
@@ -282,7 +282,7 @@ You turn and take off, running down the street away from the cafe.
 <br><br>
 
 The seawall is to your left.
-You pass by numerous people in swimsuits and summer clothes on their way to the beach. Most of them stop and gawk at you. Your running slows, as you have to maneuver between several people on the crowded sidewalks.
+You pass by numerous people in swimsuits and summer clothes on their way to the beach. Most of them stop and gawk at you. Your running slows, as you have to manoeuvre between several people on the crowded sidewalks.
 <br><br>
 
 The air blows on your bare skin. You can feel it flowing between your legs, over your completely exposed <<genitals>> and bare ass.
@@ -293,7 +293,7 @@ The air blows on your bare skin. You can feel it flowing between your legs, over
 :: Cliff Challenge 3
 <<effects>>
 
-You leave the beach wall behind and are soon surrounded by people in suits and business wear. You are running naked outside the civic center, with the city hall on your right.
+You leave the beach wall behind and are soon surrounded by people in suits and business wear. You are running naked outside the civic centre, with the city hall on your right.
 <br><br>
 
 People continue to shout and jeer at you. You have to run in between large crowds of public servants.<<if $exhibitionism gte 35>><<garousal>><<arousal 600>><<else>><<gstress>><<stress 6>><</if>>
diff --git a/game/overworld-town/loc-street/connudatus.twee b/game/overworld-town/loc-street/connudatus.twee
index 58b4d404ceadcb904ad8150522a35443b6772d78..d9d2e66dee6b7b71473291ef7368710e16d58629 100644
--- a/game/overworld-town/loc-street/connudatus.twee
+++ b/game/overworld-town/loc-street/connudatus.twee
@@ -328,7 +328,7 @@ The car lurches into motion before you can get your bearings. "Darling," says a
 "I hear you've met my... colleague, Darryl," <<person1>>Briar continues. <<He>> lounges across three seats. "I do worry about <<nnpc_him "Darryl">>. Could I ask a favour of you? Keep an eye on the people around <<nnpc_him "Darryl">>. The security, the clientele, that sort of thing. It would ease my mind."
 <br><br>
 
-The car pulls to a stop. You're on Domus Street. The <<person2>><<person>> opens a door. "This your home? How cozy. Have a good
+The car pulls to a stop. You're on Domus Street. The <<person2>><<person>> opens a door. "This your home? How cosy. Have a good
 <<if Time.dayState is "day">>
 	day."
 <<elseif Time.dayState is "night">>
diff --git a/game/overworld-town/loc-street/events.twee b/game/overworld-town/loc-street/events.twee
index e8277baea42d8613f32b27e6640486597edc5d96..f53b53b2f77794dffd2f694e0a2fde0187c052f7 100644
--- a/game/overworld-town/loc-street/events.twee
+++ b/game/overworld-town/loc-street/events.twee
@@ -991,7 +991,7 @@ You hasten your pace to escape the remarks.
 	<<if $rng lte 30>>
 		You launch into action. The <<person1>><<person>> is holding the <<person3>><<persons>> throat with one hand, while struggling to get <<his>> underwear past <<his>> knees with the other, leaving <<person1>><<him>> lined up for a running <<if $NPCList[0].penis isnot "none">>punt to the cock.<<else>>cunt-punt.<</if>> <<He>> curls up with a blood-curdling howl.
 		<br><br>
-		The <<person2>><<person>> looks up. The surprise in <<his>> eyes turns to fury. As <<he>> starts to rise, the crazed <<person3>><<person>> attacks from below, kicking <<person2>><<him>> in the groin, and clawing <<his>> face. <<person3>><<He>> struggles free and limps away, leaving the <<person1>><<person>> in the fetal position, gasping.
+		The <<person2>><<person>> looks up. The surprise in <<his>> eyes turns to fury. As <<he>> starts to rise, the crazed <<person3>><<person>> attacks from below, kicking <<person2>><<him>> in the groin, and clawing <<his>> face. <<person3>><<He>> struggles free and limps away, leaving the <<person1>><<person>> in the foetal position, gasping.
 		<br><br>
 		The <<person3>><<person>> thanks you. Something in <<his>> eyes isn't right.
 		<br><br>
@@ -5269,7 +5269,7 @@ You look around. The <<tower_creature_text>> made <<bhis>> lair inside a mess of
 A gaping hole dominates one wall. The same you entered through. It looks like the only way in or out.
 <br><br>
 
-<<if $NPCList[0].monster is "monster">>A clawed hand suddenly wraps<<else>>A pair of jaws suddenly clamps<</if>> around your ankle. You're unable to resist as <<bhe>> drags you to an isolated corner of the room stacked with shiny trinkets of varied worth - jewelry, ornate pottery, chrome dishes, toasters. The <<tower_creature_text>> tucks you amongst them. <<bHe>> steps back and stares at you, as if appraising your place in <<bhis>> collection.
+<<if $NPCList[0].monster is "monster">>A clawed hand suddenly wraps<<else>>A pair of jaws suddenly clamps<</if>> around your ankle. You're unable to resist as <<bhe>> drags you to an isolated corner of the room stacked with shiny trinkets of varied worth - jewellery, ornate pottery, chrome dishes, toasters. The <<tower_creature_text>> tucks you amongst them. <<bHe>> steps back and stares at you, as if appraising your place in <<bhis>> collection.
 <br><br>
 
 <<if $NPCList[0].monster is "monster">>
@@ -5705,7 +5705,7 @@ The <<tower_creature_text>> lumbers over to you, stopping just within arm's reac
 		<</if>>
 		<br><br>
 
-		<<bHe>> lumbers over to <<bhis>> mattress and resumes <<bhis>> slumber, leaving you shivering in draftiness of <<bhis>> lair.
+		<<bHe>> lumbers over to <<bhis>> mattress and resumes <<bhis>> slumber, leaving you shivering in draughtiness of <<bhis>> lair.
 		<br><br>
 
 		<<link [[Next|Monster Tower]]>><<set $eventskip to 1>><<set $tower_sleep to 115>><</link>>
@@ -9556,7 +9556,7 @@ You regain consciousness. Your breathing is slow. It's the only thing you can he
 You hear a noise, and your eyes shoot open. It's pitch black, and you start breathing more heavily. You're blindfolded. You try to move your arms, but find them bound.
 <br><br>
 
-You hear a voice whisper in your ear. "Mmm, you're finally awake." They give your cheek a lick. You can't decipher if the voice is male or female. Your legs are suddenly spread wide open and held down. "Finally, I've been waiting to get a piece of you for a while now."
+You hear a voice whisper in your ear. "Mmm, you're finally awake." They give your cheek a lick. You can't decypher if the voice is male or female. Your legs are suddenly spread wide open and held down. "Finally, I've been waiting to get a piece of you for a while now."
 <br><br>
 
 <<link [[Next|Street Kidnap Rape]]>><<set $molestationstart to 1>><</link>>
diff --git a/game/overworld-town/loc-street/starfish.twee b/game/overworld-town/loc-street/starfish.twee
index 9df68a3321c4d8be8621b5274da7771534a1fd8b..b31188345ff97faaa464223b4b1cc5cbd0ba1b99 100644
--- a/game/overworld-town/loc-street/starfish.twee
+++ b/game/overworld-town/loc-street/starfish.twee
@@ -163,7 +163,7 @@ You feel the air on your naked ass. You can't see the cars driving by on the str
 :: Starfish Challenge 2
 <<effects>>
 
-The first five minutes go by, without incident. Then you hear the noise of what sounds like a bus. You shake as you realize that there's a bus stop near the arcade. You turn your head as far as it'll go to see what's happening behind you.
+The first five minutes go by, without incident. Then you hear the noise of what sounds like a bus. You shake as you realise that there's a bus stop near the arcade. You turn your head as far as it'll go to see what's happening behind you.
 <br><br>
 
 You catch a glimpse of a city bus letting off several passengers. You hear them mutter to each other. You can't hear everything, but you hear the words "perfect ass" and "got photos." You blush.<<garousal>><<arousal 600>>
@@ -180,7 +180,7 @@ After ten minutes you're starting to sweat. You can physically feel the attentio
 You hear the arcade's doors open and the voices of people leaving the building. The voices come closer, growing louder and more shocked. A small group of people are watching you flash your ass on the sidewalk. You can hear them talk.
 <br><br>
 
-You realize this is a group of students the same age as you.
+You realise this is a group of students the same age as you.
 <br><br>
 
 "What's <<pshe>> doing?" you hear a <<person1>><<person>> about your age say.
diff --git a/game/overworld-town/loc-street/widgets.twee b/game/overworld-town/loc-street/widgets.twee
index c6d78b5c1bbcc9f8a5a738fb5e476cb613bfabab..cf9c48849625b60b53f4add440ea885435cb1af7 100644
--- a/game/overworld-town/loc-street/widgets.twee
+++ b/game/overworld-town/loc-street/widgets.twee
@@ -2370,7 +2370,7 @@
 				You can already see that <<hes>> sweating. "Of... uh... the virtues of abstinence."
 			<<elseif $demon gte 2 and $transformationParts.demon.horns isnot "hidden">>
 				<<He>> seems to hesitate for a moment as <<he>> gets closer. <<He>> looks at your horns, but shakes <<his>> head, as if making up <<his>> mind.
-				"Hello there. May I offer you a pamphlet? You don't need to be a believer, we just want to enlighten people about the dangers of... improper sexual behaviors."
+				"Hello there. May I offer you a pamphlet? You don't need to be a believer, we just want to enlighten people about the dangers of... improper sexual behaviours."
 			<<else>>
 				"Hello there. May I offer you a pamphlet? You don't need to be a believer, we just want to enlighten people about the virtues of abstinence."
 			<</if>>
@@ -3054,7 +3054,7 @@
 			You pass by a stall where a beggar seems to be asking for alms. The seller, however, is not having it, finally screaming for the beggar to get lost.<<gstress>><<stress 6>>
 
 		<<case 5>>
-			You stop by a stall to get a look at the products. There is a plate nearby with some apple slices as free samples. You take one. It's sweet and savory.<<lstress>><<stress -6>>
+			You stop by a stall to get a look at the products. There is a plate nearby with some apple slices as free samples. You take one. It's sweet and savoury.<<lstress>><<stress -6>>
 
 		<<case 6>>
 			You stop by a stall to get a look at the products. Suddenly, you feel someone grabbing your ass. You turn to say something, but the person has already gone.<<gstress>><<stress 6>>
@@ -3063,7 +3063,7 @@
 			As you walk around the market, you notice a bank note on the ground. You bend over and pick it up. It's a <<printmoney 500>> bill.<<lstress>><<stress -6>>
 
 		<<case 8>>
-			As you walk around the market, you notice of a bank note on the ground. You bend over to pick it up, only to realize that it is fake. Someone slaps your ass, and you turn to spot the culprit running away.<<gstress>><<stress 6>>
+			As you walk around the market, you notice of a bank note on the ground. You bend over to pick it up, only to realise that it is fake. Someone slaps your ass, and you turn to spot the culprit running away.<<gstress>><<stress 6>>
 
 		<<case 9>>
 			<<generate1>><<person1>>
diff --git a/game/overworld-town/loc-strip club/main.twee b/game/overworld-town/loc-strip club/main.twee
index b51c9efe27071349834278c0a9e857d5a027d812..d1720cc01c667fc9ffc5a8bf13d06d8fa3ae6f73 100644
--- a/game/overworld-town/loc-strip club/main.twee	
+++ b/game/overworld-town/loc-strip club/main.twee	
@@ -70,11 +70,11 @@ You are in the strip club on Connudatus Street. <<if Time.dayState isnot "day" a
 
 <<if Time.dayState isnot "dawn" and Time.dayState isnot "day" and $stripclubintro is 1>>
 	<<if $stripclubbartendingintro isnot 1>>
-		<<askicon>><<link [[Inquire about the bartending job|Strip Club Management]]>><</link>>
+		<<askicon>><<link [[Enquire about the bartending job|Strip Club Management]]>><</link>>
 		<br>
 	<</if>>
 	<<if $stripclubdancingintro isnot 1>>
-		<<askicon>><<link [[Inquire about the dancing job|Strip Club Management]]>><<set $phase to 1>><</link>>
+		<<askicon>><<link [[Enquire about the dancing job|Strip Club Management]]>><<set $phase to 1>><</link>>
 		<br>
 	<</if>>
 <</if>>
diff --git a/game/overworld-town/loc-temple/confess.twee b/game/overworld-town/loc-temple/confess.twee
index 82707524074d1ccef31d92714bf501228d393327..958462c49554291d3ccea3ad69b5b01c4b9de769 100644
--- a/game/overworld-town/loc-temple/confess.twee
+++ b/game/overworld-town/loc-temple/confess.twee
@@ -1,6 +1,6 @@
 :: Temple Confess Approach
 <<set $outside to 0>><<set $location to "temple">><<temple_effects>><<effects>>
-You approach the confessional, secluded against the wall of the main hall. Ornate symbology dances across the center trim, continuing on the heavy wooden doors on each side.
+You approach the confessional, secluded against the wall of the main hall. Ornate symbology dances across the centre trim, continuing on the heavy wooden doors on each side.
 The right side is open for penitents to confess their sins, while the left side is reserved for the priest, or 'confessor'. A small brass bell hangs in the middle.
 <br><br>
 
@@ -1326,7 +1326,7 @@ You refuse, and opt to leave the confessional. "You remain unforgiven," you hear
 :: Temple Confess Tutorial
 <<set $outside to 0>><<set $location to "temple">><<temple_effects>><<effects>>
 <<npc Jordan>><<person1>>
-You approach the confessional, secluded against the wall of the main hall. Ornate symbology dances across the center trim, continuing on the heavy wooden doors on each side.
+You approach the confessional, secluded against the wall of the main hall. Ornate symbology dances across the centre trim, continuing on the heavy wooden doors on each side.
 The right side is open for penitents to confess their sins, while the left side is reserved for the priest, or 'confessor'. A small brass bell hangs in the middle.
 <br><br>
 
@@ -1624,13 +1624,13 @@ You hear the other door open and greet your attendant.
 	<<generate1>><<person1>><<set $attendant to "sinner_generic_forgive">>
 	They sit down. A <<personsimple>>'s voice greets you.
 	<<set _sinPoolForgive to [
-		`"Forgive me, <<sister>>, for I have sinned. I have coveted my neighbor's spouse."`,
-		`"Forgive me, <<sister>>, for I have sinned. I have coveted my neighbor."`,
+		`"Forgive me, <<sister>>, for I have sinned. I have coveted my neighbour's spouse."`,
+		`"Forgive me, <<sister>>, for I have sinned. I have coveted my neighbour."`,
 		`"Forgive me, <<sister>>, for I have sinned. I lost a bet, and went streaking across town naked."`,
 		`"Forgive me, <<sister>>, for I have sinned. I've been hitting up the strip club behind my spouse's back for a few weeks."`,
 		`"Forgive me, <<sister>>, for I have sinned. I've been... indulging myself at the local brothel."`,
 		`"I've got a problem. I've been gambling like mad."`,
-		`"Forgive me, <<sister>>, for I've had impure thoughts about my neighbor."`,
+		`"Forgive me, <<sister>>, for I've had impure thoughts about my neighbour."`,
 		`"Forgive me, <<sister>>, for I've had impure thoughts about a close friend."`,
 		`"Forgive me, <<sister>>, for I've had impure thoughts about the clergy here."`,
 		`"Forgive me, <<sister>>, for I've had impure thoughts about... well, a lot of people."`,
@@ -1999,7 +1999,7 @@ You hear the other door open and greet your attendant.
 		<</if>>
 		<br><br>
 
-		"Lame. You sound like my <<if $malechance is 100>>dad<<else>>mom<</if>>. But... maybe that means you're right." <<He>> exits the confessional. <<grace 1>><<ggrace>>
+		"Lame. You sound like my <<if $malechance is 100>>dad<<else>>mum<</if>>. But... maybe that means you're right." <<He>> exits the confessional. <<grace 1>><<ggrace>>
 	<<case "sinner_6" "sinner_7">>
 		"The Lord understands. The world can be cruel, but you're doing your best."
 		<br><br>
@@ -3054,7 +3054,7 @@ You grab one of the pieces of paper and a pen from the stack and slip them throu
 			The penitent speaks.
 			<<switch $sydneyConfession.Attendant>>
 				<<case "sinner_1">>
-					"I've had impure thoughts about my neighbor's spouse. Now, I'm perfectly happy in my marriage..."
+					"I've had impure thoughts about my neighbour's spouse. Now, I'm perfectly happy in my marriage..."
 				<<case "sinner_2">>
 					"I'm... I'm a criminal. I've been stealing unattended bills at the cafe..."
 				<<case "sinner_3">>
@@ -3753,7 +3753,7 @@ You clasp the mug, relishing in its warmth. <<He>> rejoins the <<person1>><<prie
 <<else>>
 	The right <<person2>><<priest>> returns with a chair, and joins <<his>> left hand with the other <<person3>><<priest>>'s right.
 <</if>>
-The <<person1>>center <<priest>> sits, coming down to your eye level. <<His>> face seems much more gentle. "My second question," <<he>> starts. "How was it? Your first time?"<br>
+The <<person1>>centre <<priest>> sits, coming down to your eye level. <<His>> face seems much more gentle. "My second question," <<he>> starts. "How was it? Your first time?"<br>
 "Your first purge?"<br>
 "Your first purification?"<br><br>
 
@@ -3860,7 +3860,7 @@ The <<person1>>center <<priest>> sits, coming down to your eye level. <<His>> fa
 				"Withered."<br>
 				"Bloomed."<br><br>
 			<</if>>
-			"You went and spoiled <<nnpc_him "Sydney">>, did you not? <<nnpc_His "Sydney">> innocence is gone. You couldn't have known, child, and you've made it up to us by being here now.
+			"You went and spoilt <<nnpc_him "Sydney">>, did you not? <<nnpc_His "Sydney">> innocence is gone. You couldn't have known, child, and you've made it up to us by being here now.
 		<<else>>
 			<<if $templePromised is "Sydney">>
 				"Together, As One."<br>
@@ -3911,7 +3911,7 @@ The <<person1>>center <<priest>> sits, coming down to your eye level. <<His>> fa
 		"An overflowing cup."<br><br>
 
 		"However. If the corrupted individual's partner has been inducted into our order through a trial, the corruption can not take root in them, either. With nowhere to escape, it will be strangled by the holy truth within them. By the gift of Virgo." Every robed figure in the room stands at attention, stomping their right foot. It reverberates in your chest.<br>
-		"Our savior."<br>
+		"Our saviour."<br>
 		"Our gaoler."<br>
 		"One."<br>
 		"Forever."<br><br>
@@ -3959,11 +3959,11 @@ The <<person1>>center <<priest>> sits, coming down to your eye level. <<His>> fa
 			"Jordan has spoken so highly of you, <<sister>>.
 			<<if $spear_vessel is "temple" and $jordan_ritual_dance is 4>>
 				Not only did you rescue one of <<nnpc_his "Jordan">> flock from cult activity, but you retrieved the spear of Virgo." The figures all stand at attention and stomp their right foot.<br>
-				"Our savior."<br>
+				"Our saviour."<br>
 				"Our gaoler."
 			<<elseif $spear_vessel is "temple">>
 				We can't simply ignore the <<sister>> that retrieved the spear of Virgo." The figures all stand at attention and stomp their right foot.<br>
-				"Our savior."<br>
+				"Our saviour."<br>
 				"Our gaoler."
 			<<else>>
 				You rescued one of <<nnpc_his "Jordan">> flock from cult activity," <<he>> says as <<he>> licks <<his>> lips.
diff --git a/game/overworld-town/loc-temple/main.twee b/game/overworld-town/loc-temple/main.twee
index 53579a3c96d12c5281e0dbb325c61b751f0dd67a..22a8a918d913a83ca92aa92c79ad3acf83c9c9c4 100644
--- a/game/overworld-town/loc-temple/main.twee
+++ b/game/overworld-town/loc-temple/main.twee
@@ -892,7 +892,7 @@ You look away from the <<monk>>, and <<he>> continues down the aisle.
 	<<link [[Next|Temple Spear]]>><</link>>
 	<br>
 <<elseif $temple_spear_mission is undefined and ($temple_rank is "monk" or $temple_rank is "priest") and $grace gte 100>>
-	"I'm glad you're here," <<he>> says. "There's a holiday approaching, one that happens just once a century. Each century a member of our order is chosen to go on a pilgrimage to an island off the coast, to retrieve an artifact spear. The spear is the centerpiece of the holiday. We'd like to give this role to you."
+	"I'm glad you're here," <<he>> says. "There's a holiday approaching, one that happens just once a century. Each century a member of our order is chosen to go on a pilgrimage to an island off the coast, to retrieve an artefact spear. The spear is the centrepiece of the holiday. We'd like to give this role to you."
 	<br><br>
 	"There is a problem though," <<he>> continues. "There's no record of the island existing. We've lots of records here at the temple, but we seem to be the only ones. The historian at the museum suggested that our tales have confused it with the prison, or with somewhere along the shore."
 	<br><br>
@@ -912,18 +912,18 @@ You look away from the <<monk>>, and <<he>> continues down the aisle.
 		<br><br>
 	<</if>>
 	<<if $kylar_manor_secret is 1>>
-		<<askicon>><<link [["Inquire about the monstrance you found in Kylar's manor"|Temple Kylar Monstrance]]>><<set $kylar_manor_secret to 2>><</link>>
+		<<askicon>><<link [["Enquire about the monstrance you found in Kylar's manor"|Temple Kylar Monstrance]]>><<set $kylar_manor_secret to 2>><</link>>
 		<br>
 	<</if>>
 	<<if numberOfEarSlime()>>
-		<<askicon>><<link [[Inquire about ear slime|Temple Slime]]>><</link>>
+		<<askicon>><<link [[Enquire about ear slime|Temple Slime]]>><</link>>
 	<br>
 	<</if>>
 	<<if $wraith.seen gte 10>>
-		<<wraithicon>><<link [[Inquire about the pale figure|Temple Pale Story]]>><</link>>
+		<<wraithicon>><<link [[Enquire about the pale figure|Temple Pale Story]]>><</link>>
 	<br>
 	<</if>>
-	<<templeicon "chastity">><<link [[Inquire about chastity devices|Temple Chastity]]>><</link>>
+	<<templeicon "chastity">><<link [[Enquire about chastity devices|Temple Chastity]]>><</link>>
 	<br>
 	<<if $vaginalchastityparasite is 0 and $analchastityparasite is 0 and $penilechastityparasite is 0>>
 	<<elseif $money gte 2000>>
@@ -941,14 +941,14 @@ You look away from the <<monk>>, and <<he>> continues down the aisle.
 		<br>
 	<</if>>
 	<<if $temple_rank is undefined or $temple_rank is "prospective">>
-		<<askicon>><<link [[Inquire about joining the temple|Temple Join]]>><</link>>
+		<<askicon>><<link [[Enquire about joining the temple|Temple Join]]>><</link>>
 		<br>
 	<<elseif !$weekly.templeFire>>
-		<<templeicon "trial">><<link [[Inquire about the trial of purity|Temple Fire Repeat]]>><</link>>
+		<<templeicon "trial">><<link [[Enquire about the trial of purity|Temple Fire Repeat]]>><</link>>
 		<br>
 	<</if>>
 	<<if $temple_rank is "initiate">>
-		<<askicon>><<link [[Inquire about temple advancement|Temple Vigil Inquire]]>><</link>>
+		<<askicon>><<link [[Enquire about temple advancement|Temple Vigil Inquire]]>><</link>>
 		<br>
 	<</if>>
 	<<if $temple_harassed is 1>>
@@ -959,7 +959,7 @@ You look away from the <<monk>>, and <<he>> continues down the aisle.
 		<br>
 	<</if>>
 	<<if isPubfameTaskAccepted("temple")>>
-		<<schoolicon "library">><<link [[Inquire about the book (0:05)|Temple Book Ask]]>><</link>>
+		<<schoolicon "library">><<link [[Enquire about the book (0:05)|Temple Book Ask]]>><</link>>
 		<br>
 	<</if>>
 	<<if $jordan_ritual_dance is 2>>
@@ -1359,7 +1359,7 @@ The fondling continues for a few minutes. Finally, <<he>> finishes <<his>> work.
 		<<link [[Next|Temple]]>><</link>>
 	<<else>>
 		<<set $templetest to "failed">>
-		"I'm sorry, but you are spoiled." <<His>> voice shakes slightly, you're not sure if you imagined it.
+		"I'm sorry, but you are spoilt." <<His>> voice shakes slightly, you're not sure if you imagined it.
 		<<if playerIsPregnant() and _pregnancyObject.timer / _pregnancyObject.timerEnd gte 0.1 and !playerAwareTheyArePregnant>>
 			<<set _preggy to getPregnancyObject()>><<setKnowsAboutPregnancy "pc" "Jordan">>
 			<<if !_preggy.awareOf>>
@@ -1463,7 +1463,7 @@ The fondling continues for a few minutes. Finally, <<he>> finishes <<his>> work.
 		<</if>>
 	<<else>>
 		<<set $templetest to "failed">>
-		"I'm sorry, but you are spoiled." <<His>> voice shakes slightly, you're not sure if you imagined it.
+		"I'm sorry, but you are spoilt." <<His>> voice shakes slightly, you're not sure if you imagined it.
 		<<if playerIsPregnant() and _pregnancyObject.timer / _pregnancyObject.timerEnd gte 0.1 and !playerAwareTheyArePregnant()>>
 			<<set _preggy to getPregnancyObject()>><<setKnowsAboutPregnancy "pc" "Jordan">>
 			<<if !_preggy.awareOf>>
@@ -1573,7 +1573,7 @@ The fondling continues for a few minutes. Finally, <<he>> finishes <<his>> work.
 		<</if>>
 	<<else>>
 		<<set $templetest to "failed">>
-		"I'm sorry, but you are spoiled." <<His>> voice shakes slightly, you're not sure if you imagined it.
+		"I'm sorry, but you are spoilt." <<His>> voice shakes slightly, you're not sure if you imagined it.
 		<<if playerIsPregnant() and _pregnancyObject.timer / _pregnancyObject.timerEnd gte 0.1 and !playerAwareTheyArePregnant()>>
 			<<set _preggy to getPregnancyObject()>><<setKnowsAboutPregnancy "pc" "Jordan">>
 			<<if !_preggy.awareOf>>
@@ -1991,7 +1991,7 @@ You stare at the <<person>>. <<His>> smile falters. "They'll believe me," you sa
 You describe the problems you've had, and how they started when a slime entered your ear. Jordan listens with a blank look.
 <br><br>
 
-<<Hes>> silent for a moment. "There are stories," <<he>> begins. "Of old creatures like you describe. One of our artifacts details how to remove them. There was an altar at the old temple. <i>The afflicted would lie on it during a blood moon.</i>"
+<<Hes>> silent for a moment. "There are stories," <<he>> begins. "Of old creatures like you describe. One of our artefacts details how to remove them. There was an altar at the old temple. <i>The afflicted would lie on it during a blood moon.</i>"
 <br><br>
 
 "It doesn't matter though," <<he>> adds. "The old temple <i>sank beneath the lake</i> centuries ago. Students sometimes go out there after school. Entering the forest alone is a bad idea, and the ruin is... tainted."
@@ -2026,7 +2026,7 @@ You tell Jordan about the ghostly figure <<if $wraith.state is "haunt">>that's b
 "What we do know, is that a high-ranking member of the order disappeared around this time. Some say they defected, others say they were kidnapped and sacrificed for that ritual. Oddly, they appear very rarely in any records. Once again, we know very little." You catch a hint of sadness in <<his>> voice.
 <br><br>
 
-"There's one constant through all their appearances. They always wore a precious piece of jewelry, believed to have divine significance. It was a necklace,
+"There's one constant through all their appearances. They always wore a precious piece of jewellery, believed to have divine significance. It was a necklace,
 <<if ["haunt", "despair"].includes($wraith.state)>>
 	<span class="red">carved from ivory, and set with large sapphires.</span>"
 <<else>>
@@ -3048,7 +3048,7 @@ You run from your vigil, into the dark, and the waiting arms of Jordan.
 :: Temple Vigil End 2
 <<effects>><<set $outside to 0>>
 
-The room is small, with a cozy fire in a hearth. Jordan hands you a steaming cup of hot chocolate. The warmth is almost painful against your hands, but you don't mind.<<pain -50>><<lllpain>>
+The room is small, with a cosy fire in a hearth. Jordan hands you a steaming cup of hot chocolate. The warmth is almost painful against your hands, but you don't mind.<<pain -50>><<lllpain>>
 <br><br>
 
 <<pass 15>>
@@ -3076,7 +3076,7 @@ Jordan waits with you until the shivers subside, then leads you back to the temp
 :: Temple Vigil End Sydney 2
 <<effects>><<set $outside to 0>>
 
-The room is small, with a cozy fire in a hearth. Jordan hands you a steaming cup of hot chocolate. The warmth is almost painful against your hands, but you don't mind.<<pain -50>><<lllpain>>
+The room is small, with a cosy fire in a hearth. Jordan hands you a steaming cup of hot chocolate. The warmth is almost painful against your hands, but you don't mind.<<pain -50>><<lllpain>>
 <br><br>
 
 <<pass 15>>
diff --git a/game/overworld-town/loc-town-hall/main.twee b/game/overworld-town/loc-town-hall/main.twee
index ef389bbef88e09c0efa82560ef0fa2971036286d..5dea6c9d2f544f639055f00b2fcb740f28fc4a2d 100644
--- a/game/overworld-town/loc-town-hall/main.twee
+++ b/game/overworld-town/loc-town-hall/main.twee
@@ -118,10 +118,10 @@ It's your turn. The <<person1>><<person>> waits.
     <span class="black">Project undiscovered.</span>
     <br>
 <<elseif $town_projects.diving is 2>>
-    <<askicon>><<link [[Ask about building an archeological field office at the lake (1:00)|Town Hall Projects Diving]]>><<pass 60>><</link>>
+    <<askicon>><<link [[Ask about building an archaeological field office at the lake (1:00)|Town Hall Projects Diving]]>><<pass 60>><</link>>
     <br>
 <<elseif $town_projects.diving gte 3>>
-    <span class="green">An archeological field office has been built beside the lake.</span>
+    <span class="green">An archaeological field office has been built beside the lake.</span>
     <br>
 <</if>>
 <<if $town_projects.thicket is undefined or $town_projects.thicket is 1>>
@@ -317,13 +317,13 @@ The receptionist frowns. "I'm not sure what to make of-"
     <<npc Quinn>><<person1>>
     The door behind <<him>> opens, and a middle-aged <<personsimple>> strides out, eyes fixed on you. It's Quinn, the mayor.
     <br><br>
-    "It's good to see you again," <<he>> says. "Did I hear talk about archeology at the lake? That sounds like a worthy initiative. Why don't we discuss it in my office?" <<He>> wraps an arm around your shoulder.
+    "It's good to see you again," <<he>> says. "Did I hear talk about archaeology at the lake? That sounds like a worthy initiative. Why don't we discuss it in my office?" <<He>> wraps an arm around your shoulder.
     <br><br>
 <<else>>
     <<npc Quinn>><<person1>>
     The door behind <<him>> opens, and a middle-aged <<personsimple>> strides out, eyes fixed on you.
     <br><br>
-    "Did I hear talk about archeology at the lake?" <<he>> asks. "That sounds like a worthy initiative. Why don't we discuss it in my office? Ah, but allow me to introduce myself first. I'm Quinn." You recognise the name. <span class="red"><<He>>'s the mayor.</span>
+    "Did I hear talk about archaeology at the lake?" <<he>> asks. "That sounds like a worthy initiative. Why don't we discuss it in my office? Ah, but allow me to introduce myself first. I'm Quinn." You recognise the name. <span class="red"><<He>>'s the mayor.</span>
     <br><br>
     The mayor wraps an arm around your shoulder.
     <br><br>
@@ -355,7 +355,7 @@ The receptionist frowns. "I'm not sure what to make of-"
     <br><br>
 <</if>>
 
-"Now then," Quinn says, sitting on a high-backed chair behind <<his>> desk and gesturing at another in front of <<him>>. "You want to set up an archeological office at the lake?"
+"Now then," Quinn says, sitting on a high-backed chair behind <<his>> desk and gesturing at another in front of <<him>>. "You want to set up an archaeological office at the lake?"
 <br><br>
 
 <<if $speech_attitude is "meek">>
diff --git a/game/overworld-town/special-kylar/kylar-functions.js b/game/overworld-town/special-kylar/kylar-functions.js
new file mode 100644
index 0000000000000000000000000000000000000000..f7baf562dbfec4237f2bc8c5d76a33ef7bcfa12e
--- /dev/null
+++ b/game/overworld-town/special-kylar/kylar-functions.js
@@ -0,0 +1,169 @@
+/* eslint-disable no-undef */
+/**
+ * @typedef {object} DolLocation
+ * @property {string} area The place they are at.
+ * @property {string} state The state they are in within the area.
+ */
+
+/** @type {DolLocation} */
+const UnknownLocation = { area: "unknown", state: "unknown" };
+
+/** @type {DolLocation} */
+const InactiveLocation = { area: "inactive", state: "inactive" };
+
+/** @returns {boolean} */
+const isRaining = () => ["rain", "snow"].contains(V.weather);
+
+/**
+ * Simple location function for figuring out where Kylar is at school.
+ *
+ * [KylarScheduleRefactor]
+ *
+ * @returns {DolLocation} Location (area, state) they are at.
+ */
+function getKylarLocation() {
+	const state = C.npc.Kylar.state;
+	switch (state) {
+		case "active":
+			return getKylarActiveLocation();
+		case "prison":
+			return getKylarPrisonLocation();
+		case "":
+			return InactiveLocation;
+		default:
+			return UnknownLocation;
+	}
+}
+window.getKylarLocation = getKylarLocation;
+
+/**
+ * Try to call getKylarLocation first, or ensure Kylar's state is "active"
+ *
+ * @returns {DolLocation} Kylar's active location
+ */
+function getKylarActiveLocation() {
+	// Putting English play stuff here as it's more important than other things:
+	if (V.schoolstate === "afternoon" && isKylarAvailableForRehearsal()) {
+		if (isDoubleRehearsalAvailable()) {
+			return { area: "english", state: "dual_rehearsal" };
+		}
+		if (V.englishPlayRoles.KylarKnown) {
+			if (isRaining()) {
+				return { area: "library", state: "library" };
+			}
+			return { area: "rear_courtyard", state: "stump" };
+		}
+		return { area: "english", state: "rehearsal" };
+	}
+	if (V.kylarwatched) {
+		return { area: "stalking", state: "player" };
+	}
+	if (Time.schoolTime) {
+		return getKylarSchoolLocation();
+	}
+	// Personal timetable:
+	return getKylarPersonalLocation();
+}
+window.getKylarActiveLocation = getKylarActiveLocation;
+
+/** @returns {DolLocation} Kylar's location in school */
+function getKylarSchoolLocation() {
+	switch (V.schoolstate) {
+		case "third": // PC is in English class
+			return { area: "english", state: "english" };
+		case "lunch":
+			return getKylarLocationInLunchtime();
+	}
+	return UnknownLocation;
+}
+window.getKylarSchoolLocation = getKylarSchoolLocation;
+
+/** @returns {DolLocation} Kylar's location in school lunchtime */
+function getKylarLocationInLunchtime() {
+	if (V.daily.school.lunchEaten === undefined) {
+		return { area: "canteen", state: "lunch" };
+	}
+	if (!["rain", "snow"].contains(V.weather)) {
+		// Raining or snowing, Kylar goes to the stump in rear courtyard.
+		return { area: "rear_courtyard", state: "stump" };
+	}
+	// Not raining or snowing, Kylar goes to library.
+	const libraryState = getKylarLibraryState();
+	if (!["elsewhere", "inactive"].contains(libraryState)) {
+		return { area: "library", state: libraryState };
+	}
+	return UnknownLocation;
+}
+window.getKylarLocationInLunchtime = getKylarLocationInLunchtime;
+
+/** @returns {DolLocation} Kylar's active location */
+function getKylarPersonalLocation() {
+	// Midnight to 6:59 AM
+	if (Time.hour < 7) {
+		return { area: "manor_bedroom", state: "sleeping" };
+	}
+	// 9:00 AM to 5:59 PM
+	if (Time.hour >= 9 && Time.hour < 18) {
+		if (isRaining()) {
+			return { area: "arcade", state: "playing" };
+		}
+		const parkState = V.kylar.fountain === 1 ? "fountain" : "bench";
+		return { area: "park", state: parkState };
+	}
+	return UnknownLocation;
+}
+window.getKylarPersonalLocation = getKylarPersonalLocation;
+
+/** @returns {DolLocation} Kylar's active location */
+function getKylarPrisonLocation() {
+	/* To be implemented */
+	return UnknownLocation;
+}
+window.getKylarPrisonLocation = getKylarPrisonLocation;
+
+/** @returns {boolean} */
+function isKylarAvailableForRehearsal() {
+	return V.englishPlay === "ongoing" && V.englishPlayRoles.Kylar !== "none";
+}
+window.isKylarAvailableForRehearsal = isKylarAvailableForRehearsal;
+
+/** @returns {boolean} */
+function isDoubleRehearsalAvailable() {
+	return (
+		V.englishPlay === "ongoing" &&
+		V.englishPlayReadiness >= 56 &&
+		V.englishPlayRoles.SydneyKnown &&
+		V.englishPlayRoles.KylarKnown &&
+		V.englishPlayRoles.Kylar !== "none" &&
+		!V.englishPlayDoubleRehearsal
+	);
+}
+window.isDoubleRehearsalAvailable = isDoubleRehearsalAvailable;
+
+/**
+ * Randomly decides based primarily on Kylar's jealousy, secondarily on Sydney's love,
+ * whether to stalk the PC in the library.
+ *
+ * At max jealousy, and max love, there should only be a 20% chance for this to be true.
+ *
+ * @returns {boolean}
+ */
+function rollKylarLibraryStalkFlag() {
+	// Constants for calculation
+	const coefficient = 20;
+	const jealousyCoefficient = 3;
+	const loveCoefficient = 1;
+	const totalRolls = (jealousyCoefficient + loveCoefficient) * 100; // 400
+	// Kylar stats
+	const jealousy = jealousyCoefficient * C.npc.Kylar.rage;
+	// Sydney stats (This normalisedLove variable should be extracted!)
+	const love = getSydneyLoveNorm(); // Normalise love to be between 0.0 and 1.0.
+	const adjustedLove = loveCoefficient * love * 100;
+	// Calculation
+	const chance = (jealousy + adjustedLove) / totalRolls; // Float between 0.0 and 1.0
+	const finalChance = coefficient * chance; // Float between 0.0 and 20.0
+	const roll = random(1, 100); // 1 to 100
+	const result = finalChance >= roll; // Compares 0->20 with 1->100
+	return result;
+}
+window.rollKylarLibraryStalkFlag = rollKylarLibraryStalkFlag;
diff --git a/game/overworld-town/special-kylar/main.twee b/game/overworld-town/special-kylar/main.twee
index 1ea37cd90a04f599cc35b0e78ed0f142c8974095..7706a5e5b3b264ac2dbad7fa15bb77d1f2e1d629 100644
--- a/game/overworld-town/special-kylar/main.twee
+++ b/game/overworld-town/special-kylar/main.twee
@@ -1344,6 +1344,17 @@ You shake off Kylar's grip and leave. <<He>> watches you with <<his>> fists clen
 <<set _kylar to statusCheck("Kylar")>>
 <<cleareventpool>>
 
+<<if $daily.kylar.libraryInteract is 1>>
+	/* Ensures the event fires once, avoiding repetition for now */
+	<<set $daily.kylar.libraryInteract to 2>>
+
+	<<addevent "kylarLibraryStalkTease1">>
+	<<runeventpool>>
+
+	<br><br>
+	<<kylaroptions "notext">>
+	<<exit>>
+<</if>>
 <<if _kylarStatus.includes("Love")>>
 	<<if $genderknown.includes("Kylar") and !$worn.lower.type.includes("naked")>>
 		<<addevent "kylarFlirtEventClothesPull">> <!-- defined in Widgets Kylar -->
@@ -2417,7 +2428,7 @@ Kylar balks at your words, looking at you nervously. "W-what?"
 	<<if _kylarLower.includes("skirt")>>
 		<<he>> reaches under <<his>> _kylarLower and pulls off <<his>> $daily.kylar.underwear.colourDesc.
 	<<else>>
-		<<he>> lifts <<his>> _kylarLower and, in a complex maneuver you can't quite follow, manages to remove <<his>> $daily.kylar.underwear.colourDesc without removing <<his>> _kylarLower.
+		<<he>> lifts <<his>> _kylarLower and, in a complex manoeuvre you can't quite follow, manages to remove <<his>> $daily.kylar.underwear.colourDesc without removing <<his>> _kylarLower.
 	<</if>>
 <</if>>
 <br><br>
@@ -2492,7 +2503,15 @@ You nod, and <<he>> blushes. You think <<hes>> going to turn you down, but <<he>
 <<set $outside to 0>><<effects>><<run statusCheck("Kylar")>>
 <<set $kylar_action to "chat">>
 
-<<if _kylarStatus.includes("Love")>>
+<<if $daily.kylar.libraryInteract is 1>>
+	/* Ensures the event fires once, avoiding repetition for now */
+	<<set $daily.kylar.libraryInteract to 2>>
+
+	<<kylarLibraryStalkChat1>>
+
+	<<kylaroptions "notext">>
+	<<exit>>
+<<elseif _kylarStatus.includes("Love")>>
 	<<bodywritingExposureCheck>>
 	<<if _bodywriting_exposed gte 1 and !$daily.kylar.bodywriting and _bodypart>>
 		<<set $daily.kylar.bodywriting to true>>
@@ -3372,6 +3391,7 @@ You finish the food. "I'm going to wait in the classroom," Robin says when you'r
 :: Canteen Lunch Kylar
 <<set $outside to 0>><<set $location to "school">><<schooleffects>><<effects>><<run statusCheck("Kylar")>>
 <<endevent>><<npc Kylar>><<person1>>
+<<set _kylarlocation to getKylarLocation()>>
 
 You sit beside Kylar and say hello.
 
@@ -3427,12 +3447,12 @@ You sit beside Kylar and say hello.
 	<</if>>
 	<br><br>
 
-	You finish your food. Kylar carries your trays away, then walks in the direction of the <<if $weather is "rain" or $weather is "snow">>library<<else>>rear courtyard<</if>>.
+	You finish your food. Kylar carries your trays away, then walks in the direction of the <<if _kylarlocation.area is "library">>library<<else>>rear courtyard<</if>>.
 	<br><br>
 
 	<<endevent>>
 	<<historyicon>><<link [[Go to your history lesson (0:01)|History Classroom]]>><<set $justEntered to true>><<pass 1>><</link>><br>
-	<<if $weather is "rain" or $weather is "snow">>
+	<<if _kylarlocation.area is "library">>
 		<<schoolicon "library">><<link [[Follow Kylar to the library (0:02)|School Library]]>><<pass 2>><</link>><br>
 	<<else>>
 		<<schoolicon "courtyard">><<link [[Follow Kylar to the courtyard (0:02)|School Rear Courtyard]]>><<pass 2>><</link>><br>
@@ -3450,7 +3470,7 @@ You sit beside Kylar and say hello.
 
 	<<endevent>>
 	<<historyicon>><<link [[Go to your history lesson (0:01)|History Classroom]]>><<set $justEntered to true>><<pass 1>><</link>><br>
-	<<if $weather is "rain" or $weather is "snow">>
+	<<if _kylarlocation.area is "library">>
 		<<schoolicon "library">><<link [[Follow Kylar to the library (0:02)|School Library]]>><<pass 2>><</link>><br>
 	<<else>>
 		<<schoolicon "courtyard">><<link [[Follow Kylar to the courtyard (0:02)|School Rear Courtyard]]>><<pass 2>><</link>><br>
@@ -3462,6 +3482,7 @@ You sit beside Kylar and say hello.
 
 :: Canteen Kylar Whitney Kiss
 <<effects>>
+
 You close your eyes and kiss back. <<npcincr Whitney love 1>><<glove>>
 <br><br>
 
@@ -3478,6 +3499,7 @@ Whitney pulls away from you at last, brushing a stray hair away from <<person2>>
 
 :: Canteen Kylar Whitney Refuse
 <<effects>>
+
 You push Whitney away. Kylar pulls you closer.
 <<if $speech_attitude is "meek">>
 	You cling tight.
@@ -3492,6 +3514,7 @@ You push Whitney away. Kylar pulls you closer.
 
 :: Canteen Kylar Whitney Slap
 <<effects>>
+<<set _kylarlocation to getKylarLocation()>>
 
 Whitney forces <<his>> tongue into your mouth, so you bite it.
 <br><br>
@@ -3509,7 +3532,7 @@ The other students lose interest. You finish your food beside a relieved Kylar.
 <br><br>
 <<endevent>>
 <<historyicon>><<link [[Go to your history lesson (0:01)|History Classroom]]>><<set $justEntered to true>><<pass 1>><</link>><br>
-<<if $weather is "rain" or $weather is "snow">>
+<<if _kylarlocation.area is "library">>
 	<<schoolicon "library">><<link [[Follow Kylar to the library (0:02)|School Library]]>><<pass 2>><</link>><br>
 <<else>>
 	<<schoolicon "courtyard">><<link [[Follow Kylar to the courtyard (0:02)|School Rear Courtyard]]>><<pass 2>><</link>><br>
@@ -3579,7 +3602,9 @@ Excited at the prospect of violence, other students gather around.
 <</if>>
 
 :: Canteen Kylar Whitney Intervene Finish
-<<effects>><<run statusCheck("Kylar")>>
+<<effects>>
+<<run statusCheck("Kylar")>>
+<<set _kylarlocation to getKylarLocation()>>
 
 <<if $enemyhealth lte 0>>
 	You bring Whitney to <<his>> knees, and the crowd cheers for you. <<gcool>><<status 1>>
@@ -3620,7 +3645,7 @@ Excited at the prospect of violence, other students gather around.
 	<br><br>
 
 	<<historyicon>><<link [[Go to your history lesson (0:01)|History Classroom]]>><<set $justEntered to true>><<pass 1>><</link>><br>
-	<<if $weather is "rain" or $weather is "snow">>
+	<<if _kylarlocation.area is "library">>
 		<<schoolicon "library">><<link [[Follow Kylar to the library (0:02)|School Library]]>><<pass 2>><</link>><br>
 	<<else>>
 		<<schoolicon "library">><<link [[Follow Kylar to the courtyard (0:02)|School Rear Courtyard]]>><<pass 2>><</link>><br>
@@ -3644,7 +3669,7 @@ Excited at the prospect of violence, other students gather around.
 	<br><br>
 
 	<<historyicon>><<link [[Go to your history lesson (0:01)|History Classroom]]>><<set $justEntered to true>><<pass 1>><</link>><br>
-	<<if $weather is "rain" or $weather is "snow">>
+	<<if _kylarlocation.area is "library">>
 		<<schoolicon "library">><<link [[Follow Kylar to the library (0:02)|School Library]]>><<pass 2>><</link>><br>
 	<<else>>
 		<<schoolicon "library">><<link [[Follow Kylar to the courtyard (0:02)|School Rear Courtyard]]>><<pass 2>><</link>><br>
@@ -3682,7 +3707,7 @@ Excited at the prospect of violence, other students gather around.
 	<br><br>
 
 	<<historyicon>><<link [[Go to your history lesson (0:01)|History Classroom]]>><<set $justEntered to true>><<pass 1>><</link>><br>
-	<<if $weather is "rain" or $weather is "snow">>
+	<<if _kylarlocation.area is "library">>
 		<<schoolicon "library">><<link [[Follow Kylar to the library (0:02)|School Library]]>><<pass 2>><</link>><br>
 	<<else>>
 		<<schoolicon "library">><<link [[Follow Kylar to the courtyard (0:02)|School Rear Courtyard]]>><<pass 2>><</link>><br>
@@ -3718,7 +3743,7 @@ Excited at the prospect of violence, other students gather around.
 	<br><br>
 
 	<<historyicon>><<link [[Go to your history lesson (0:01)|History Classroom]]>><<set $justEntered to true>><<pass 1>><</link>><br>
-	<<if $weather is "rain" or $weather is "snow">>
+	<<if _kylarlocation.area is "library">>
 		<<schoolicon "library">><<link [[Follow Kylar to the library (0:02)|School Library]]>><<pass 2>><</link>><br>
 	<<else>>
 		<<schoolicon "library">><<link [[Follow Kylar to the courtyard (0:02)|School Rear Courtyard]]>><<pass 2>><</link>><br>
@@ -3804,6 +3829,7 @@ Whitney regains some composure as <<he>> follows Leighton from the room. <<He>>
 
 :: Canteen Kylar Cheer 2
 <<effects>>
+<<set _kylarlocation to getKylarLocation()>>
 
 The crowd disperses, leaving a lone, trembling Kylar on the ground. You approach <<person1>><<him>>, <<his>> eyes staring into space. You extend your hand to <<hers>>.
 <br><br>
@@ -3829,7 +3855,7 @@ You continue eating, sat beside a dazed Kylar. <<He>> carries your trays away wh
 <br><br>
 
 <<historyicon>><<link [[Go to your history lesson (0:01)|History Classroom]]>><<set $justEntered to true>><<pass 1>><</link>><br>
-<<if $weather is "rain" or $weather is "snow">>
+<<if _kylarlocation.area is "library">>
 	<<schoolicon "library">><<link [[Follow Kylar to the library (0:02)|School Library]]>><<pass 2>><</link>><br>
 <<else>>
 	<<schoolicon "library">><<link [[Follow Kylar to the courtyard (0:02)|School Rear Courtyard]]>><<pass 2>><</link>><br>
@@ -3910,13 +3936,32 @@ Kylar stirs on the ground.
 You approach Kylar's desk.
 
 <<if _kylarStatus.includes("Love")>>
-	<<Hes>> sketching a picture of you in <<his>> sketchbook.
+	<<Hes>> sketching a picture of you
+	<<if _kylarStatus.includes("Rage")>>
+		and <<himself>> in <<his>> sketchbook.
+	<<else>>
+		in <<his>> sketchbook.
+	<</if>>
 <<else>>
 	<<He>> hides whatever <<he>> was sketching when <<he>> sees you.
 <</if>>
 <br><br>
 <<kylaroptions>>
 
+:: Kylar Library Jealousy
+<<set $outside to 0>><<set $location to "school">><<schooleffects>><<effects>><<run statusCheck("Kylar")>>
+
+<<npc Kylar>><<person1>>
+You approach Kylar's desk.
+
+You notice <<him>> glaring at Sydney. As <<he>> sees you, <<he>> turns <<his>> attention to you.
+<br><br>
+
+<<if !$daily.kylar.libraryInteract>>
+	<<set $daily.kylar.libraryInteract to 1>>
+<</if>>
+<<kylaroptions>>
+
 :: Kylar Courtyard
 <<set $outside to 1>><<set $location to "school">><<schooleffects>><<effects>><<run statusCheck("Kylar")>>
 
diff --git a/game/overworld-town/special-kylar/manor.twee b/game/overworld-town/special-kylar/manor.twee
index b46c9d6f0684b5beb781df20f41f3c6163b85074..f88ff157c2327b074bea29dce305a707f03a4654 100644
--- a/game/overworld-town/special-kylar/manor.twee
+++ b/game/overworld-town/special-kylar/manor.twee
@@ -340,7 +340,7 @@ It runs through a door in the kitchen, into the overgrown back garden. Trees fla
 You glimpse a stone altar in front of you, which it places you upon with surprising gentleness. Then it turns and vanishes in a thicket.
 <br><br>
 
-You lie still for a moment. Nothing happens. The stone is shaped like a large disk. Ivy snakes across its surface. You crawl to the edge, and drop to the grass below. The stone disk is held aloft by a single stout leg. It looks like an altar.
+You lie still for a moment. Nothing happens. The stone is shaped like a large disc. Ivy snakes across its surface. You crawl to the edge, and drop to the grass below. The stone disc is held aloft by a single stout leg. It looks like an altar.
 <br><br>
 
 <<link [[Next|Manor Sleep Abduction 4]]>><</link>>
diff --git a/game/overworld-town/special-robin/crossdressing.twee b/game/overworld-town/special-robin/crossdressing.twee
index 1ce1b52c64ab7025f0316d8d7c4b6288d9d64951..a2d1cf3ee8b29c31fd1a19584f87f9e6f4aef1d5 100644
--- a/game/overworld-town/special-robin/crossdressing.twee
+++ b/game/overworld-town/special-robin/crossdressing.twee
@@ -385,7 +385,7 @@ you're left to stew in your curiosity.
 	<</if>>
 	<br><br>
 
-	The <<person2>><<personsimple>> seems surprised by your defense. "It was just a joke, don't take it too seriously.
+	The <<person2>><<personsimple>> seems surprised by your defence. "It was just a joke, don't take it too seriously.
 	I've got to go anyways. Nice catching up with you Robin!" <<He>> says as <<he>> leaves.
 	<br><br>
 
diff --git a/game/overworld-town/special-robin/main.twee b/game/overworld-town/special-robin/main.twee
index cbcbc703d9763f391c2a8cd2b1746f6cdcfe8bc3..a9a541b0b6596e9a161c30cd0f4a410f8d3c5a68 100644
--- a/game/overworld-town/special-robin/main.twee
+++ b/game/overworld-town/special-robin/main.twee
@@ -9,7 +9,7 @@
 	<<robinPunishment "docks">>
 	You go to Robin's room. You knock, but there's no response, nor is there a note on the door. You peek inside. There's no one there.
 	<br><br>
-	A <<npc Robin>><<generatec2>><<person2>><<person>> walks by. You grasp <<his>> arm. "Robin always leaves a note," you say. "Has something happened?"
+	A <<npc Robin>><<generatey2>><<person2>><<person>> walks by. You grasp <<his>> arm. "Robin always leaves a note," you say. "Has something happened?"
 	<br><br>
 	The <<person>> looks frightened. "D-don't let anyone know I told you," <<he>> says. "But Robin couldn't afford to pay, so Bailey took <<person1>><<him>> somewhere." <<if $robindebtknown isnot 1>><span class="red">You wonder why Robin never told you <<he>> had to pay Bailey, and realise you never told Robin either.</span><</if>>
 	<br><br>
@@ -3968,7 +3968,7 @@ When it's done, Robin looks a little relieved. "Are you feeling better now?" <<h
 
 <<elseif $phase is 1>>
 	<<set $robinbaileyhelp to 1>>
-	You curl up into a fetal position and place your hands over your face as you continue to sob.
+	You curl up into a foetal position and place your hands over your face as you continue to sob.
 	A few minutes later you hear someone come stomping in, and you are pulled up to a sitting position by your hair.
 	<span class="red">It's Bailey.</span>
 	<br><br>
@@ -6136,7 +6136,7 @@ Robin fidgets, but nods. "I-I understand." <<He>> begins walking towards the orp
 
 :: Robin Pillory Intro
 <<set $outside to 0>><<set $location to "home">><<effects>>
-<<generatec1>><<person1>>
+<<generatey1>><<person1>>
 <<npc Robin 2>>
 
 One of the younger orphans spots you in the hallway as they pass the room. "Robin's been gone for a while," <<he>> says. "Where could <<person2>><<he>> have gone?"
@@ -6179,7 +6179,7 @@ One of the younger orphans spots you in the hallway as they pass the room. "Robi
 "I don't know," <<person1>><<he>> responds. "I hope <<he>> doesn't end up in jail. They said they wanted to make an example."
 <br><br>
 
-"I saw <<person2>><<him>>!" a <<generatec3>><<person3>><<person>> interjects, out of breath from running. "They almost caught me, but I got lucky.
+"I saw <<person2>><<him>>!" a <<generatey3>><<person3>><<person>> interjects, out of breath from running. "They almost caught me, but I got lucky.
 They said they're locking <<person2>><<him>> into the pillory at <<ampm 15 00>>! On that street with the town hall!"
 <br><br>
 
@@ -7427,7 +7427,7 @@ You get up from the bed and leave the room. Robin doesn't look at you.
 :: Robin Bath Trauma Ask
 <<effects>>
 
-You try your best to inquire Robin about what happened to <<him>>. <<Hes>> silent, only occasionally letting out a muffled weep.
+You try your best to enquire Robin about what happened to <<him>>. <<Hes>> silent, only occasionally letting out a muffled weep.
 <<stress 6>><<trauma 6>><<gstress>><<gtrauma>>
 <br><br>
 
@@ -7879,4 +7879,4 @@ You unscrew the thermos.
 <<lstress>><<stress -6>>
 <br><br>
 
-<<link [[Next|Domus Street]]>><<endevent>><</link>>
\ No newline at end of file
+<<link [[Next|Domus Street]]>><<endevent>><</link>>
diff --git a/game/overworld-town/special-sydney/main.twee b/game/overworld-town/special-sydney/main.twee
index bc1127d0b536e547f6991cd7693dde050ceaaa4f..275c6a8a505e726c376e63a00154b00063c895f8 100644
--- a/game/overworld-town/special-sydney/main.twee
+++ b/game/overworld-town/special-sydney/main.twee
@@ -90,7 +90,7 @@
 
 					"Overdue, and damaged! Unacceptable!" Whitney looks shocked as Sydney stands and pulls <<nnpc_him "Whitney">> down with surprising boldness and strength. <<He>> uncaps a red marker. Whitney swats <<him>> away, but not before Sydney scribbles "<span class="red">Book Heathen >:(</span>" on Whitney's forehead. <<nnpc_He "Whitney">> pulls away.
 					<br><br>
-					"You crazy shit! Are you looking to get beat?" <<nnpc_He "Whitney">> reaches for Sydney, but stops when <<nnpc_he "Whitney">> notices you. "Oh, of course. You spoiled <<him>>."
+					"You crazy shit! Are you looking to get beat?" <<nnpc_He "Whitney">> reaches for Sydney, but stops when <<nnpc_he "Whitney">> notices you. "Oh, of course. You spoilt <<him>>."
 					<<if $whitneyromance is 1>>
 						<<nnpc_He "Whitney">> smiles. "I already have to manage one of you, you're not worth my time."
 					<<else>>
@@ -1756,19 +1756,29 @@ Leighton takes Sydney by the arm again. You spring into action.
 
 :: Sydney Leighton Spank
 <<schooleffects>><<effects>><<run statusCheck("Sydney")>><<set $corruptionEvent to 1>>
+<<set _kylarLocation to getKylarLocation()>>
+<<set $isKylarPresent to _kylarLocation.area is "library">>
 <<set $sydneySeen.pushUnique("spank")>>
 <<switch $phase>>
 	<<case 1>>
 		"I did it," you say. "I'm the thief." They both freeze. Sydney looks betrayed, but relieved.
 		<br><br>
-		A smile creeps across Leighton's face. "Thank you for your candor. Instead of one severe punishment for one student, I'll be punishing both of you with less severe methods.<<if $studyBooks.stolen isnot "none">><<set $studyBooks.stolen to "none">><<unset $sydneyStolenKnown>><<set $bookStolenKnown += 1>><<set $recentReturnTimer to 14>> Oh, and I'll be taking that stolen book back.<</if>>"
+		A smile creeps across Leighton's face. "Thank you for your candour. Instead of one severe punishment for one student, I'll be punishing both of you with less severe methods.<<if $studyBooks.stolen isnot "none">><<set $studyBooks.stolen to "none">><<unset $sydneyStolenKnown>><<set $bookStolenKnown += 1>><<set $recentReturnTimer to 14>> Oh, and I'll be taking that stolen book back.<</if>>"
 		<<nnpc_He "Leighton">> raises <<nnpc_his "Leighton">> voice. "Everyone please exit the library at once. A pair of students are about to be disciplined." You hear the students around the library comply, packing up their things and shuffling out.
+		<<if $isKylarPresent && $awareness gte 100>>
+			<<set $awareOfKylar to true>>
+			<span class="red">You did not see Kylar leave.</span>
+		<</if>>
 		<br><br>
 	<<case 2>>
 		"I did it," you lie. "I'm the thief." They both freeze. Sydney looks betrayed, but relieved. <<stress 3>><<gstress>>
 		<br><br>
-		A smile creeps across Leighton's face. "Thank you for your candor. Instead of one severe punishment for one student, I'll be punishing both of you with less severe methods."
+		A smile creeps across Leighton's face. "Thank you for your candour. Instead of one severe punishment for one student, I'll be punishing both of you with less severe methods."
 		<<nnpc_He "Leighton">> raises <<nnpc_his "Leighton">> voice. "Everyone please exit the library at once. A pair of students are about to be disciplined." You hear the students around the library comply, packing up their things and shuffling out.
+		<<if $isKylarPresent && $awareness gte 100>>
+			<<set $awareOfKylar to true>>
+			<span class="red">You did not see Kylar leave.</span>
+		<</if>>
 		<br><br>
 	<<case 3>>
 		<<if $speech_attitude is "meek">>
@@ -1781,6 +1791,10 @@ Leighton takes Sydney by the arm again. You spring into action.
 		<<promiscuity1>>
 		A smile creeps across Leighton's face. "How very considerate! You're lucky to have such a loyal friend, Sydney. Instead of one severe punishment for one student, I'll be punishing both of you with less severe methods."
 		<<nnpc_He "Leighton">> raises <<nnpc_his "Leighton">> voice. "Everyone please exit the library at once. A pair of students are about to be disciplined." You hear the students around the library comply, packing up their things and shuffling out.
+		<<if $isKylarPresent && $awareness gte 200>>
+			<<set $awareOfKylar to true>>
+			<span class="red">You did not see Kylar leave.</span>
+		<</if>>
 		<br><br>
 	<<case 4>>
 		Leighton marches up to the rental counter with you in tow. Sydney looks as though <<he>> was preparing <<himself>> for this.
@@ -1806,6 +1820,11 @@ Leighton takes Sydney by the arm again. You spring into action.
 	<br><br>
 	Sydney looks back to you, <<his>> eyes trained on yours, silently begging for you to look away.
 <</if>>
+<<if $awareOfKylar>>
+	<span class="red">You feel Kylar watching.</span>
+<<elseif $awareness gte 100>>
+	<span class="blue">You feel someone else watching.</span>
+<</if>>
 <br><br>
 "Your punishment will be mutual. You're both to take responsibility for each other, and thus, must keep each other in line. Don't either of you dare be gentle, I'll know if you do and believe me, your punishment won't be nearly as lenient or pleasant." Leighton looks to you, and waits expectantly. "What are you waiting for? If you don't, I will."
 <br><br>
@@ -1871,13 +1890,29 @@ Your palm comes down on Sydney's rear with a resounding slap. <<He>> cries out,
 		<<default>>
 			causing <<him>> to moan as <<he>> instinctively moves in motion with you.
 	<</switch>>
+	<<npcincr "Kylar" "rage" 20>><<gggksuspicion>>
 	<br><br>
-	You release <<him>>, giving <<him>> one last hard spank.
-	<<if _sydneyStatus.includes("Lust")>>
-		<<He>> yelps, finally reaching climax at your hit. Leighton laughs. "Not so pure after all, are we?"
+	<<if $isKylarPresent>>
+		Before you can deliver the final spank, you hear a shelf fall behind you. The sound startles all of you.
+		"Who is in here?!" Leighton yells out. There is no response.
+		"I expect you two to clean that up after this is over," Leighton states plainly.
+		<<if _sydneyStatus.includes("Lust")>>
+			Sydney is still on the counter, waiting for a chance at orgasm.
+		<<else>>
+			Sydney is still on the counter.
+		<</if>>
+		Leighton briefly looks her over, then turns to you.
+		"It's your turn now," he commands.
+		Sydney whimpers in disappointment.
 		<<npcincr Sydney lust 3>><<npcincr Sydney purity -5>><<ggslust>><<llspurity>>
+	<<else>>
+		You release <<him>>, giving <<him>> one last hard spank.
+		<<if _sydneyStatus.includes("Lust")>>
+			<<He>> yelps, finally reaching climax at your hit. Leighton laughs. "Not so pure after all, are we?"
+			<<npcincr Sydney lust 3>><<npcincr Sydney purity -5>><<ggslust>><<llspurity>>
+		<</if>>
+		<<Hes>> left as a gasping mess on the counter for a moment. "Your turn," comes Leighton's sing-song voice, <<nnpc_his "Leighton">> words oozing with anticipation.
 	<</if>>
-	<<Hes>> left as a gasping mess on the counter for a moment. "Your turn," comes Leighton's sing-song voice, <<nnpc_his "Leighton">> words oozing with anticipation.
 	<br><br>
 	You gently help Sydney down from the counter. <<He>> clings to you for a moment before you take <<his>> place.
 <<else>>
@@ -1935,7 +1970,7 @@ Your palm comes down on Sydney's rear with a resounding slap. <<He>> cries out,
 	"I can take it," you say. "Hit me as hard as I hit you." <<He>> still seems hesitant to hurt you.
 	<br><br>
 <<elseif $phase is 2>>
-	You wiggle your <<bottom>> at Sydney, and look back at <<him>>. You wink. <<He>> still seems hesitant to hurt you. <<promiscuity1>>
+	You wiggle your <<bottom>> at Sydney, and look back at <<him>>. You wink. <<He>> still seems hesitant to hurt you.<<npcincr "Kylar" "rage" 1>><<gksuspicion>> <<promiscuity1>>
 <<else>>
 	"We have to take responsibility, remember? This is just a punishment, nothing more," you say. <<He>> still seems hesitant to hurt you.
 	<br><br>
@@ -1948,10 +1983,20 @@ You yelp as the blow lands right on your <<genitals>>, but with the <<nnpc_title
 	<br><br>
 	<<if _sydneyStatus is "corruptLust">>
 		After a particularly hard smack, <<he>> gives your genitals a tweak and giggles. <<arousal 1000 "genitals">><<pain 5>><<garousal>><<gpain>>
+		<<if $isKylarPresent>>
+			<<if $awareOfKylar>>
+				<br>
+				<span class="red">You feel Kylar's eyes fixated on your aching <<bottom>>.</span>
+			<<elseif $awareness gte 100>>
+				<br>
+				<span class="blue">You feel an extra pair of eyes staring at your aching <<bottom>>.</span>
+			<</if>>
+			<<npcincr "Kylar" "rage" 5>><<ggksuspicion>>
+		<</if>>
 		<br><br>
 	<</if>>
 <<else>>
-	<<He>> winces each time you cry out, <<his>> blows faltering. <<pain 5>><<gpain>>
+	<<He>> winces each time you cry out, <<his>> blows faltering. <<pain 5>><<gpain>><<npcincr "Kylar" "rage" 1>><<gksuspicion>>
 	<br><br>
 <</if>>
 You are left sore and sour from the harsh punishment Sydney has been forced to perform on you. "Good work Sydney, perhaps there's hope for you yet. Dismissed!" Leighton orders Sydney to leave the library and roughly grabs at your reddened ass as <<nnpc_he "Leighton">> leans over your back and whispers into your ear.
@@ -2021,6 +2066,7 @@ Sydney leaves your sight, and soon you feel something cold, wet, and soothing pr
 <</if>>
 <<pain -5>><<llpain>>
 <br><br>
+<<set _sydneyGroped to $sydneyGroped>>
 <<if $sydneyGroped is 1>>
 	<<unset $sydneyGroped>>
 	<<if $corruptionRollover is 1>>
@@ -2078,8 +2124,27 @@ With your agony lessened, you stand and pull up your <<if !$worn.lower.type.incl
 	<br><br>
 <</if>>
 
-"The library will be opening back up soon. I'm not looking forward to sitting on my <<if _sydneyStatus.includes("corrupt")>>ass<<else>>butt<</if>> after that." <<He>> takes <<his>> seat behind the rental counter, and smiles at you.
+"The library will be opening back up soon. I'm not looking forward to sitting on my <<if _sydneyStatus.includes("corrupt")>>ass<<else>>butt<</if>> after that."
+
+<<if $isKylarPresent && _sydneyGroped>>
+	Sydney looks over at the fallen bookshelf. "We should clean that up first." You spend a few minutes picking up and organising the books with Sydney.
+	After you are done, you walk back over to the rental counter.
+<</if>>
+
+<<He>> takes <<his>> seat behind the rental counter, and smiles at you.
 <br><br>
+
+<<if $awareOfKylar>>
+	You see Kylar sat at <<his "Kylar">> usual place.
+	<<if _sydneyGroped>>
+		<span class="red"><<His>> expression contorted in disgust and pain.</span>
+	<<else>>
+		<<He>> looks conflicted.
+	<</if>>
+	<br><br>
+<</if>>
+<<unset $awareOfKylar>>
+<<unset $isKylarPresent>>
 <<set $libraryMoneyStolen to 0>>
 <<endevent>>
 <<npc "Sydney">><<person1>>
@@ -2110,9 +2175,14 @@ You watch as Leighton brings down <<nnpc_his "Leighton">> hand on Sydney's botto
 
 :: Sydney Leighton Spank Refuse 2
 You shake your head, and turn your back to Sydney. "Then you are no longer needed here." Leighton walks you to the door of the library, unlocks it, and pushes you out.
+<<if $isKylarPresent>>
+	As <<he "Leighton">> pushes you out, you catch a glimpse of Kylar staring at you from behind a bookshelf. <<He "Kylar">> looked unusually happy. <<npcincr "Kylar" "rage" -2>><<lksuspicion>>
+<</if>>
 <br><br>
 After a moment, you can hear Sydney's cries resume. They sound much more agonised. <<stress 24>><<trauma 3>><<gggstress>><<gtrauma>>
 <br><br>
+<<unset $awareOfKylar>>
+<<unset $isKylarPresent>>
 <<link [[Next|Hallways]]>><<endevent>><<set $eventskip to 1>><<set $libraryMoneyStolen to 0>><<set $daily.sydney.punish to 1>><</link>>
 <br>
 
@@ -3512,7 +3582,8 @@ You get on your knees and crawl under the counter.
 
 	<<set $seductiondifficulty to (6000 - ((C.npc.Sydney.love + C.npc.Sydney.lust) * 15) - C.npc.Sydney.purity) * _modifier>>
 	<<seductioncheck>>
-	<<if $seductionskill lt 1000>><span class="gold">You feel more confident in your powers of seduction.</span><br><br><</if>>
+	<<if $seductionskill lt 1000>><span class="gold">You feel more confident in your powers of seduction.</span><</if>>
+	<br><br>
 	<<seductionskilluse>>
 
 	<<if $seductionrating gte $seductionrequired>>
diff --git a/game/overworld-town/special-sydney/sydney-functions.js b/game/overworld-town/special-sydney/sydney-functions.js
new file mode 100644
index 0000000000000000000000000000000000000000..b400aef744d20ff2590697ade9f6e405771d24d4
--- /dev/null
+++ b/game/overworld-town/special-sydney/sydney-functions.js
@@ -0,0 +1,13 @@
+/**
+ * Normalises Sydney's love stat, if 150 love, and max is 150,
+ * will output 1.0.
+ * 
+ * @returns {number} Between 0.0 and 1.0
+ */
+function getSydneyLoveNorm() {
+	const sydney = C.npc.Sydney;
+	const value = sydney.love;
+	const max = 150; // This desperately needs to be a constant somewhere
+	return normalise(value, max);
+}
+window.getSydneyLoveNorm = getSydneyLoveNorm;
diff --git a/game/overworld-town/special-sydney/temple.twee b/game/overworld-town/special-sydney/temple.twee
index 7ff9a32ab35d0a58b9cf933774269283386c08ed..9a21c2018a359909e6871686bb0e0e6ab28f06e5 100644
--- a/game/overworld-town/special-sydney/temple.twee
+++ b/game/overworld-town/special-sydney/temple.twee
@@ -2008,7 +2008,7 @@ The fondling continues for a few minutes. Finally, <<he>> finishes <<his>> work.
 	<<link [[Next|Sydney Temple Pure Pass]]>><</link>>
 <<else>>
 	<<set $templetest to "failed">>
-	"I'm sorry, but you are spoiled." <<His>> voice shakes slightly, you're not sure if you imagined it. "You must be purified. I will summon the specialists. Please cooperate with them." <<He>> produces a small bell from <<his>> robes, and rings. "Sydney will not be punished, or informed of this, for your sake."
+	"I'm sorry, but you are spoilt." <<His>> voice shakes slightly, you're not sure if you imagined it. "You must be purified. I will summon the specialists. Please cooperate with them." <<He>> produces a small bell from <<his>> robes, and rings. "Sydney will not be punished, or informed of this, for your sake."
 	<br><br>
 	<<endevent>>
 	<<link [[Next|Temple Arcade Intro]]>><</link>>
@@ -2360,7 +2360,7 @@ Jordan scrapes away the grey powder into the same jar. You and Sydney watch with
 <<else>>
 	<<set $templetest to "failed">>
 	<span class="red">It remains inert.</span> Jordan frowns.
-	"I'm sorry, but one of you is spoiled." <<His>> voice shakes slightly, you're not sure if you imagined it. "You must both be purified, as one. I will summon the specialists. Please cooperate with them." <<He>> produces a small bell from <<his>> robes, and rings.
+	"I'm sorry, but one of you is spoilt." <<His>> voice shakes slightly, you're not sure if you imagined it. "You must both be purified, as one. I will summon the specialists. Please cooperate with them." <<He>> produces a small bell from <<his>> robes, and rings.
 	<br><br>
 	Sydney looks panicked. <<nnpc_He "Sydney">> quickly clings to you.
 	<br><br>
diff --git a/game/overworld-underground/loc-sewers/morgan.twee b/game/overworld-underground/loc-sewers/morgan.twee
index 6f4c6dbda0a446a343f9c229a79385e90df274c4..593258291cd729fb4267d007b0c6f9a1c2fa33fc 100644
--- a/game/overworld-underground/loc-sewers/morgan.twee
+++ b/game/overworld-underground/loc-sewers/morgan.twee
@@ -302,7 +302,7 @@ You wait for Morgan to become distracted.
 	You try to toss the rats down a drain, but they splat against the bars. You lift the teacup to pour away, but the slimy handle slips from your hand and it shatters on the ground.
 	<br><br>
 
-	Morgan turns. "I made that for you!" <<he>> says. "You spoiled brat."
+	Morgan turns. "I made that for you!" <<he>> says. "You spoilt brat."
 	<br><br>
 
 	<<skulduggeryuse>>
@@ -1048,7 +1048,7 @@ You feel something solid in an inside pocket, and reach in for it. It's a USB st
 	You remember the last time you went through this, and decide to cut to the chase. "Have you seen anything called a 'USB flash drive' down here?"
 	<br><br>
 
-	Morgan digs around their clothes, before pulling something out of a pocket. "Saw this floating in the moldy passage south of here just the other day! It says 'USB flash drive' on the side, I'm sure it's what you're talking about. Why, <<charles>>?"
+	Morgan digs around their clothes, before pulling something out of a pocket. "Saw this floating in the mouldy passage south of here just the other day! It says 'USB flash drive' on the side, I'm sure it's what you're talking about. Why, <<charles>>?"
 <<else>>
 	<<set $pubfame.seen.pushUnique("morganDrive")>>
 	You frown, trying to think of a way to explain a USB stick to Morgan in a way <<he>> would understand. "It's small, square-ish, with a little metal bit at the end. The non-metal part is probably plastic, and a little thicker than the rest of-"
diff --git a/game/special-templates/main.twee b/game/special-templates/main.twee
index 2b0017ef4317906f1323ff78cc41c18e7d029c22..23cbff902687770fd33fddb48ea019552b4811d5 100644
--- a/game/special-templates/main.twee
+++ b/game/special-templates/main.twee
@@ -1304,7 +1304,7 @@ Menstruation day: <<print $sexStats.vagina.menstruation.currentDay>><br>
 <<npc "Jordan">><<person1>>
 Jordan materialises from the background radiation of the universe.
 <br><br>
-"I'm glad you're here," <<he>> says. "There's a holiday approaching, one that happens just once a century. Each century a member of our order is chosen to go on a pilgrimage to an island off the coast, to retrieve an artifact spear. The spear is the centerpiece of the holiday. We'd like to give this role to you."
+"I'm glad you're here," <<he>> says. "There's a holiday approaching, one that happens just once a century. Each century a member of our order is chosen to go on a pilgrimage to an island off the coast, to retrieve an artefact spear. The spear is the centrepiece of the holiday. We'd like to give this role to you."
 <br><br>
 "There is a problem though," <<he>> continues. "There's no record of the island existing. We've lots of records here at the temple, but we seem to be the only ones. The historian at the museum suggested that our tales have confused it with the prison, or with somewhere along the shore."
 <br><br>
diff --git a/img/clothes/under_upper/bikini/full_gray.png b/img/clothes/under_upper/bikini/full_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/bikini/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/buntiebikinitop/frayed_gray.png b/img/clothes/under_upper/buntiebikinitop/frayed_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/buntiebikinitop/frayed_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/buntiebikinitop/full_gray.png b/img/clothes/under_upper/buntiebikinitop/full_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/buntiebikinitop/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/buntiebikinitop/tattered_gray.png b/img/clothes/under_upper/buntiebikinitop/tattered_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/buntiebikinitop/tattered_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/buntiebikinitop/torn_gray.png b/img/clothes/under_upper/buntiebikinitop/torn_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/buntiebikinitop/torn_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/chestwrap/full.png b/img/clothes/under_upper/chestwrap/full.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/chestwrap/full.png and /dev/null differ
diff --git a/img/clothes/under_upper/corset/full_gray.png b/img/clothes/under_upper/corset/full_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/corset/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/cow/full.png b/img/clothes/under_upper/cow/full.png
deleted file mode 100644
index b0ec5a62695887e248bcf0bf1120f65b9b40f914..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/cow/full.png and /dev/null differ
diff --git a/img/clothes/under_upper/lacebra/full_gray.png b/img/clothes/under_upper/lacebra/full_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/lacebra/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/latexleotard/full_gray.png b/img/clothes/under_upper/latexleotard/full_gray.png
deleted file mode 100644
index baf15cd60467ed75bd32b99da723a338e49cc6cd..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/latexleotard/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/microkini/frayed_gray.png b/img/clothes/under_upper/microkini/frayed_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/microkini/frayed_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/microkini/full_gray.png b/img/clothes/under_upper/microkini/full_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/microkini/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/microkini/tattered_gray.png b/img/clothes/under_upper/microkini/tattered_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/microkini/tattered_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/microkini/torn_gray.png b/img/clothes/under_upper/microkini/torn_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/microkini/torn_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/plainbra/frayed_gray.png b/img/clothes/under_upper/plainbra/frayed_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/plainbra/frayed_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/plainbra/full_gray.png b/img/clothes/under_upper/plainbra/full_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/plainbra/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/plainbra/tattered_gray.png b/img/clothes/under_upper/plainbra/tattered_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/plainbra/tattered_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/plainbra/torn.png b/img/clothes/under_upper/plainbra/torn.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/plainbra/torn.png and /dev/null differ
diff --git a/img/clothes/under_upper/plainbra/torn_gray.png b/img/clothes/under_upper/plainbra/torn_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/plainbra/torn_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/pushupbra/frayed_gray.png b/img/clothes/under_upper/pushupbra/frayed_gray.png
deleted file mode 100644
index fec2adc71ce563f03bde8cb0680d4173e634ff30..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/pushupbra/frayed_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/pushupbra/full_gray.png b/img/clothes/under_upper/pushupbra/full_gray.png
deleted file mode 100644
index fec2adc71ce563f03bde8cb0680d4173e634ff30..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/pushupbra/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/pushupbra/tattered_gray.png b/img/clothes/under_upper/pushupbra/tattered_gray.png
deleted file mode 100644
index fec2adc71ce563f03bde8cb0680d4173e634ff30..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/pushupbra/tattered_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/pushupbra/torn_gray.png b/img/clothes/under_upper/pushupbra/torn_gray.png
deleted file mode 100644
index fec2adc71ce563f03bde8cb0680d4173e634ff30..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/pushupbra/torn_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/schoolswimtop/frayed_gray.png b/img/clothes/under_upper/schoolswimtop/frayed_gray.png
deleted file mode 100644
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/schoolswimtop/frayed_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/schoolswimtop/full_gray.png b/img/clothes/under_upper/schoolswimtop/full_gray.png
deleted file mode 100644
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/schoolswimtop/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/schoolswimtop/tattered_gray.png b/img/clothes/under_upper/schoolswimtop/tattered_gray.png
deleted file mode 100644
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/schoolswimtop/tattered_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/schoolswimtop/torn_gray.png b/img/clothes/under_upper/schoolswimtop/torn_gray.png
deleted file mode 100644
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/schoolswimtop/torn_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/sportsbra/frayed_gray.png b/img/clothes/under_upper/sportsbra/frayed_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/sportsbra/frayed_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/sportsbra/full_gray.png b/img/clothes/under_upper/sportsbra/full_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/sportsbra/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/sportsbra/tattered_gray.png b/img/clothes/under_upper/sportsbra/tattered_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/sportsbra/tattered_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/sportsbra/torn_gray.png b/img/clothes/under_upper/sportsbra/torn_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/sportsbra/torn_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/straplessbra/frayed_gray.png b/img/clothes/under_upper/straplessbra/frayed_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/straplessbra/frayed_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/straplessbra/full_gray.png b/img/clothes/under_upper/straplessbra/full_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/straplessbra/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/straplessbra/tattered_gray.png b/img/clothes/under_upper/straplessbra/tattered_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/straplessbra/tattered_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/straplessbra/torn_gray.png b/img/clothes/under_upper/straplessbra/torn_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/straplessbra/torn_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/stripedbra/acc_gray.png b/img/clothes/under_upper/stripedbra/acc_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/stripedbra/acc_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/stripedbra/frayed_gray.png b/img/clothes/under_upper/stripedbra/frayed_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/stripedbra/frayed_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/stripedbra/full_gray.png b/img/clothes/under_upper/stripedbra/full_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/stripedbra/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/stripedbra/tattered_gray.png b/img/clothes/under_upper/stripedbra/tattered_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/stripedbra/tattered_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/stripedbra/torn_gray.png b/img/clothes/under_upper/stripedbra/torn_gray.png
deleted file mode 100644
index dc57afa8aafa55a95fdb5cd3d150848a9499ef21..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/stripedbra/torn_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/tape/frayed_gray.png b/img/clothes/under_upper/tape/frayed_gray.png
deleted file mode 100644
index b0ec5a62695887e248bcf0bf1120f65b9b40f914..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/tape/frayed_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/tape/full_gray.png b/img/clothes/under_upper/tape/full_gray.png
deleted file mode 100644
index b0ec5a62695887e248bcf0bf1120f65b9b40f914..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/tape/full_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/tape/tattered_gray.png b/img/clothes/under_upper/tape/tattered_gray.png
deleted file mode 100644
index b0ec5a62695887e248bcf0bf1120f65b9b40f914..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/tape/tattered_gray.png and /dev/null differ
diff --git a/img/clothes/under_upper/tape/torn_gray.png b/img/clothes/under_upper/tape/torn_gray.png
deleted file mode 100644
index b0ec5a62695887e248bcf0bf1120f65b9b40f914..0000000000000000000000000000000000000000
Binary files a/img/clothes/under_upper/tape/torn_gray.png and /dev/null differ
diff --git a/img/clothes/upper/diving/frayed_gray.png b/img/clothes/upper/diving/frayed_gray.png
deleted file mode 100644
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..0000000000000000000000000000000000000000
Binary files a/img/clothes/upper/diving/frayed_gray.png and /dev/null differ
diff --git a/img/clothes/upper/diving/full_gray.png b/img/clothes/upper/diving/full_gray.png
deleted file mode 100644
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..0000000000000000000000000000000000000000
Binary files a/img/clothes/upper/diving/full_gray.png and /dev/null differ
diff --git a/img/clothes/upper/diving/tattered_gray.png b/img/clothes/upper/diving/tattered_gray.png
deleted file mode 100644
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..0000000000000000000000000000000000000000
Binary files a/img/clothes/upper/diving/tattered_gray.png and /dev/null differ
diff --git a/img/clothes/upper/diving/torn_gray.png b/img/clothes/upper/diving/torn_gray.png
deleted file mode 100644
index 5903f168d5e2dd0b3fd1b06b3c32bc2cb31d21c1..0000000000000000000000000000000000000000
Binary files a/img/clothes/upper/diving/torn_gray.png and /dev/null differ