diff --git a/devNotes/encyclopedia.js b/devNotes/encyclopedia.js
index f3d9d3c047a66fa2df96ae3eb1506936a397b023..c92c5363e64ec725d9ca30b64b56db2352b4ef05 100644
--- a/devNotes/encyclopedia.js
+++ b/devNotes/encyclopedia.js
@@ -1,28 +1,8 @@
 // At the moment this is only meant to be used as a reference. DO NOT use otherwise the encyclopedia WILL be broken.
 App.Encyclopedia.UI = function() {
-	const text = new DocumentFragment();
-	const r = new SpacedTextAccumulator(text);
+	const f = new DocumentFragment();
 	const pass = App.Encyclopedia.renderCategory(V.encyclopedia);
-	/**
-	 * @param {string} text
-	 * @param {string} [article]
-	 * @param {string} [className]
-	 * @api private
-	 */
-	const link = (text, article, className) => App.Encyclopedia.link(text, article, className);
-	/**
-	 * @param {string|HTMLSpanElement} text
-	 * @param {string[]} [tag]
-	 * @api private
-	 */
-	const highlight = (text, tag=["bold"]) => App.UI.DOM.makeElement("span", text, tag);
 	/*
-	const devotion = (text="devotion", color="hotpink") => link(text, "From Rebellious to Devoted", color);
-	const trust = (text="trust") => link(text, "Trust", "mediumaquamarine");
-	const rep = (text="reputation") => link(text, "Arcologies and Reputation", "green");
-
-	const naturalDoms = [link("Head Girl"), link("Madam"), link("Schoolteacher"), link("Stewardess"), link("Nurse")];
-
 	if (!["Table of Contents", "Credits"].includes(V.encyclopedia)) {
 		App.Events.addNode(f, [App.UI.DOM.generateLinksStrip([link("Table of Contents"), link("Credits")], "div", ["indent"]);
 	}
@@ -30,92 +10,15 @@ App.Encyclopedia.UI = function() {
 
 	if (pass) {
 		// console.log(pass);
-		// App.Events.addParagraph(text, [pass]);
-		// text.append(pass);
-		// text.append(Scripting.evalJavaScript(pass));
+		// App.Events.addParagraph(f, [pass]);
+		// f.append(pass);
+		// f.append(Scripting.evalJavaScript(pass));
 		// App.Events.addNode(f, [pass], "div", ["indent"]);
-		// text.append(App.Encyclopedia.renderCategory(V.encyclopedia));
-		text.append(String(pass));
+		// f.append(App.Encyclopedia.renderCategory(V.encyclopedia));
+		f.append(String(pass));
 	} else {
 	// if (!pass) {
 		switch (V.encyclopedia) {
-			// OBTAINING SLAVES
-			// SLAVE SKILLS
-			case "Skills":
-				r.push(highlight("Future room for lore text", ["note"]));
-				r.toParagraph();
-				r.push("Choose a more particular entry below:");
-				r.toNode("div");
-				break;
-			case "Anal Skill":
-				r.push(highlight("Anal skill"), "improves performance on sexual assignments and is available in three levels.");
-				r.push("Training methods include schooling (up to level one), plugs (up to level one), personal attention (unlimited), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited).");
-				r.push(link("Anus", "Anuses"), "surgery can reduce this skill.");
-				break;
-			case "Combat Skill":
-				r.push(highlight("Combat skill"), "is available in one level only. It improves performance in lethal and nonlethal pit fights and performance as the Bodyguard. Training methods are limited to on the job experience (including pit fights) and events.");
-				break;
-			case "Entertainment Skill":
-				r.push(highlight("Entertainment skill"), "is available in three levels. It improves performance on all sexual assignments, though it affects public service or working in the club most. Training methods include schooling (up to level one), personal attention (up to level one), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited).");
-				break;
-			case "Oral Skill":
-				r.push(highlight("Oral skill"), "improves performance on sexual assignments and is available in three levels. Training methods include schooling (up to level one), gags (up to level one), personal attention (unlimited), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited).");
-				r.push(link("Lip", "Lips"), "surgery can reduce this skill.");
-				break;
-			case "Vaginal Skill":
-				r.push(highlight("Vaginal skill"), "improves performance on sexual assignments and is available in three levels. Training methods include schooling (up to level one), plugs (up to level one), personal attention (unlimited), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited). Slaves without vaginas cannot learn or teach this skill, limiting their ultimate skill ceiling.");
-				r.push(link("Vagina", "Vaginas"), "surgery can reduce this skill.");
-				break;
-			case "Whoring Skill":
-				r.push(highlight("Whoring skill"), "is available in three levels. It improves performance on all sexual assignments, though it affects whoring or working in the brothel most. Training methods include schooling (up to level one), personal attention (up to level one), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited).");
-				break;
-			// SLAVE RELATIONSHIPS
-			case "Relationships":
-				r.push("Slaves can develop many different", highlight("relationships"), "as they become accustomed to their lives, which offer many benefits and some downsides. It is possible for the player to push slaves towards one kind of relationship or another, but slaves' feelings are less susceptible to complete control than their bodies. All relationships in Free Cities are one-to-one, which is a limitation imposed by Twine.");
-				r.toParagraph();
-				break;
-			case "Rivalries":
-				r.push(highlight("Rivalries"), "tend to arise naturally between slaves on the same assignment.");
-				r.push("Slaves may enjoy rivals' misfortunes, but bickering on the job between rivals will impede performance if the rivals remain on the same assignment. Rivals will also dislike working with each other. Rivalries may be defused naturally with time apart, or suppressed by rules. Rivalries impede the formation of");
-				r.push(link("romances"), ", but a romance can defuse a rivalry.");
-				r.toParagraph();
-				break;
-			case "Romances":
-				r.push(highlight("Romances"), "tend to arise naturally between slaves on the same assignment, and between slaves having a lot of sex with each other. Slaves will be saddened by their romantic partners' misfortunes, but will do better on public sexual assignments if assigned to work at the same job as a romantic partner. Slaves will also derive various mental effects from being in a relationship: they can rely on each other, take solace in each other's company, and even learn fetishes from each other. Romances can be suppressed by the rules, or fall apart naturally. On the other hand, romances can develop from friendships, to best friendships, to friendships with benefits, to loving relationships.");
-				r.push("Romances impede the formation of", link("rivalries"), "and can defuse them. Once a romance has advanced to where the slaves are lovers, its members are eligible for several events in which the couple can be", link("married.", "Slave Marriages"));
-				r.toParagraph();
-				break;
-			case "Emotionally Bonded":
-				r.push(highlight("Emotionally Bonded"), "slaves have become so");
-				r.push(devotion("devoted"), "to the player character that they define their own happiness mostly in terms of pleasing the PC.");
-				r.push("Slaves may become emotionally bonded if they become perfectly", devotion("devoted"), "and", trust("trusting"), "without being part of a", link("romance.", "Romances"));
-
-				r.push("They receive powerful mental benefits — in fact, they are likely to accept anything short of sustained intentional abuse without lasting displeasure — and perform better at the");
-				r.push(link("servitude"), "and", link("fucktoy"), "assignments.");
-				r.push("The most reliable way of ensuring a slave's development of emotional bonds is to have her assigned as a fucktoy (or to the");
-				r.push(link("Master suite"), ")", "as she becomes perfectly", devotion("devoted"), "and", trust("trusting."));
-				r.toParagraph();
-				break;
-			case "Emotional Slut":
-				r.push(highlight("Emotional sluts"), "are slaves who have lost track of normal human emotional attachments, seeing sex as the only real closeness.");
-				r.push("Slaves may become emotional sluts if they become perfectly", devotion("devoted"), "and", trust("trusting"), "without being part of a", link("romance.", "Romances"));
-				r.push("They receive powerful mental benefits, though they will be disappointed if they are not on assignments that allow them to be massively promiscuous, and perform better at the", link("whoring"), "and", link("public service", "Public Service"), "assignments. The most reliable way of ensuring a slave's development into an emotional slut is to have her assigned as a public servant (or to the", link("Club"), ")", "as she becomes perfectly");
-				r.push(devotion("devoted"), "and", trust("trusting"));
-				r.addToLast(".");
-				r.toParagraph();
-				break;
-			case "Slave Marriages":
-				r.push(highlight("Slave Marriages"), "take place between two slaves.");
-				r.push("Several random events provide the opportunity to marry slave lovers. Slave Marriages function as an end state for slave");
-				r.push(link("romances"), ";", "slave wives receive the best relationship bonuses, and can generally be depended upon to help each other be good slaves in various ways. The alternative end states for slaves' emotional attachments are the");
-				r.push(link("emotional slut", "Emotional Slut"), "and", link("emotionally bonded", "Emotionally Bonded"), "statuses, both of which are for a single slave alone.");
-				r.toParagraph();
-				break;
-			case "Slaveowner Marriages":
-				r.push(highlight("Slaveowner Marriages"), ", marriages between a", devotion("devoted"), "slave and the player character, require passage of a slaveowner marriage policy unlocked by advanced", link("paternalism"), ". Once this policy is in place,");
-				r.push(link("emotionally bonded", "Emotionally Bonded"), "slaves can be married. There is no limit to the number of slaves a paternalist player character can marry. Marriage to the player character functions as a direct upgrade to being emotionally bonded.");
-				r.toParagraph();
-				break;
 			default:
 				throw Error(`Error: bad title - ${V.encyclopedia}.`);
 		}
@@ -124,6 +27,6 @@ App.Encyclopedia.UI = function() {
 	if (!["How to Play", "Table of Contents", "Credits"].includes(V.encyclopedia)) { // special pages where we don't show related links
 		App.Events.addNode(f, [App.Encyclopedia.relatedLinks()], "h2");
 	}
-	return text;
+	return f;
  */
 };
diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw
index b727b3257e481937d370679abc69d43aaad2797a..79a3fa60989d131a8f729d1b29597c0e3d3776d0 100644
--- a/src/gui/Encyclopedia/encyclopedia.tw
+++ b/src/gui/Encyclopedia/encyclopedia.tw
@@ -14,70 +14,6 @@ $encyclopedia
 <<if _pass>>
 	<<includeDOM _pass>>
 <<else>>
-<<switch $encyclopedia>>
-
-/**********
-SLAVE SKILLS
-**********/
-<<case "Skills">>
-	//Future room for lore text//
-
-	<br><br>
-	Choose a more particular entry below:
-	<br>
-
-<<case "Anal Skill">>
-	''Anal skill'' improves performance on sexual assignments and is available in three levels. Training methods include schooling (up to level one), plugs (up to level one), personal attention (unlimited), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited). <<= App.Encyclopedia.Dialog.linkSC("Anus", "Anuses")>> surgery can reduce this skill.
-
-
-<<case "Combat Skill">>
-	''Combat skill'' is available in one level only. It improves performance in lethal and nonlethal pit fights and performance as the Bodyguard. Training methods are limited to on the job experience (including pit fights) and events.
-
-
-<<case "Entertainment Skill">>
-	''Entertainment skill'' is available in three levels. It improves performance on all sexual assignments, though it affects public service or working in the club most. Training methods include schooling (up to level one), personal attention (up to level one), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited).
-
-
-<<case "Oral Skill">>
-	''Oral skill'' improves performance on sexual assignments and is available in three levels. Training methods include schooling (up to level one), gags (up to level one), personal attention (unlimited), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited). <<= App.Encyclopedia.Dialog.linkSC("Lip", "Lips")>> surgery can reduce this skill.
-
-
-<<case "Vaginal Skill">>
-	''Vaginal skill'' improves performance on sexual assignments and is available in three levels. Training methods include schooling (up to level one), plugs (up to level one), personal attention (unlimited), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited). Slaves without vaginas cannot learn or teach this skill, limiting their ultimate skill ceiling. <<= App.Encyclopedia.Dialog.linkSC("Vagina", "Vaginas")>> surgery can reduce this skill.
-
-
-<<case "Whoring Skill">>
-	''Whoring skill'' is available in three levels. It improves performance on all sexual assignments, though it affects whoring or working in the brothel most. Training methods include schooling (up to level one), personal attention (up to level one), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited).
-
-/**********
-SLAVE RELATIONSHIPS
-**********/
-<<case "Relationships">>
-	Slaves can develop many different ''relationships'' as they become accustomed to their lives, which offer many benefits and some downsides. It is possible for the player to push slaves towards one kind of relationship or another, but slaves' feelings are less susceptible to complete control than their bodies. All relationships in Free Cities are one-to-one, which is a limitation imposed by Twine.
-
-
-<<case "Rivalries">>
-	''Rivalries'' tend to arise naturally between slaves on the same assignment. Slaves may enjoy rivals' misfortunes, but bickering on the job between rivals will impede performance if the rivals remain on the same assignment. Rivals will also dislike working with each other. Rivalries may be defused naturally with time apart, or suppressed by rules. Rivalries impede the formation of <<= App.Encyclopedia.Dialog.linkSC("romances", "Romances")>>, but a romance can defuse a rivalry.
-
-
-<<case "Romances">>
-	''Romances'' tend to arise naturally between slaves on the same assignment, and between slaves having a lot of sex with each other. Slaves will be saddened by their romantic partners' misfortunes, but will do better on public sexual assignments if assigned to work at the same job as a romantic partner. Slaves will also derive various mental effects from being in a relationship: they can rely on each other, take solace in each other's company, and even learn fetishes from each other. Romances can be suppressed by the rules, or fall apart naturally. On the other hand, romances can develop from friendships, to best friendships, to friendships with benefits, to loving relationships. Romances impede the formation of <<= App.Encyclopedia.Dialog.linkSC("rivalries", "Rivalries")>>, and can defuse them. Once a romance has advanced to where the slaves are lovers, its members are eligible for several events in which the couple can be <<= App.Encyclopedia.Dialog.linkSC("married", "Slave Marriages")>>.
-
-
-<<case "Emotionally Bonded">>
-	''Emotionally Bonded'' slaves have become so @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devoted", "From Rebellious to Devoted")>>@@ to the player character that they define their own happiness mostly in terms of pleasing the PC. Slaves may become emotionally bonded if they become perfectly @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devoted", "From Rebellious to Devoted")>>@@ and @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trusting", "Trust")>>@@ without being part of a <<= App.Encyclopedia.Dialog.linkSC("romance", "Romances")>>. They receive powerful mental benefits — in fact, they are likely to accept anything short of sustained intentional abuse without lasting displeasure — and perform better at the <<= App.Encyclopedia.Dialog.linkSC("servitude", "Servitude")>> and <<= App.Encyclopedia.Dialog.linkSC("fucktoy", "Fucktoy")>> assignments. The most reliable way of ensuring a slave's development of emotional bonds is to have her assigned as a fucktoy (or to the <<= App.Encyclopedia.Dialog.linkSC("Master suite", "Master Suite")>>) as she becomes perfectly @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devoted", "From Rebellious to Devoted")>>@@ and @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trusting", "Trust")>>.@@
-
-
-<<case "Emotional Slut">>
-	''Emotional sluts'' are slaves who have lost track of normal human emotional attachments, seeing sex as the only real closeness. Slaves may become emotional sluts if they become perfectly @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devoted", "From Rebellious to Devoted")>>@@ and @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trusting", "Trust")>>@@ without being part of a <<= App.Encyclopedia.Dialog.linkSC("romance", "Romances")>>. They receive powerful mental benefits, though they will be disappointed if they are not on assignments that allow them to be massively promiscuous, and perform better at the <<= App.Encyclopedia.Dialog.linkSC("whoring", "Whoring")>> and <<= App.Encyclopedia.Dialog.linkSC("public service", "Public Service")>> assignments. The most reliable way of ensuring a slave's development into an emotional slut is to have her assigned as a public servant (or to the <<= App.Encyclopedia.Dialog.linkSC("club", "Club")>>) as she becomes perfectly @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devoted", "From Rebellious to Devoted")>>@@ and @@.mediumaquamarine;<<= App.Encyclopedia.Dialog.linkSC("trusting", "Trust")>>.@@
-
-
-<<case "Slave Marriages">>
-	''Slave Marriages'' take place between two slaves. Several random events provide the opportunity to marry slave lovers. Slave Marriages function as an end state for slave <<= App.Encyclopedia.Dialog.linkSC("romances", "Romances")>>; slave wives receive the best relationship bonuses, and can generally be depended upon to help each other be good slaves in various ways. The alternative end states for slaves' emotional attachments are the <<= App.Encyclopedia.Dialog.linkSC("emotional slut", "Emotional Slut")>> and <<= App.Encyclopedia.Dialog.linkSC("emotionally bonded", "Emotionally Bonded")>> statuses, both of which are for a single slave alone.
-
-
-<<case "Slaveowner Marriages">>
-	''Slaveowner Marriages'', marriages between a @@.hotpink;<<= App.Encyclopedia.Dialog.linkSC("devoted", "From Rebellious to Devoted")>>@@ slave and the player character, require passage of a slaveowner marriage policy unlocked by advanced <<= App.Encyclopedia.Dialog.linkSC("paternalism", "Paternalism")>>. Once this policy is in place, <<= App.Encyclopedia.Dialog.linkSC("emotionally bonded", "Emotionally Bonded")>> slaves can be married. There is no limit to the number of slaves a paternalist player character can marry. Marriage to the player character functions as a direct upgrade to being emotionally bonded.
 
 <<default>>
 	Error: bad title.
diff --git a/src/gui/Encyclopedia/encyclopediaRelatedLinks.tw b/src/gui/Encyclopedia/encyclopediaRelatedLinks.tw
index 5912c49a0b788f9935a1a5fe05ff8ff8549eb39c..123992af892f608d9ca1fc355e51472f1fdb773f 100644
--- a/src/gui/Encyclopedia/encyclopediaRelatedLinks.tw
+++ b/src/gui/Encyclopedia/encyclopediaRelatedLinks.tw
@@ -12,30 +12,6 @@
 
 <<switch $encyclopedia>>
 
-/**********
-SLAVE SKILLS
-**********/
-<<case "Anal Skill" "Combat Skill" "Entertainment Skill" "Oral Skill" "Skills" "Vaginal Skill" "Whoring Skill">>
-	<<= App.Encyclopedia.Dialog.linkSC("Anal Skill", "Anal Skill")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Combat Skill", "Combat Skill")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Entertainment Skill", "Entertainment Skill")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Oral Skill", "Oral Skill")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Vaginal Skill", "Vaginal Skill")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Whoring Skill", "Whoring Skill")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Career Experience", "Career Experience")>>
-
-/**********
-SLAVE RELATIONSHIPS
-**********/
-<<case "Emotional Slut" "Emotionally Bonded" "Relationships" "Rivalries" "Romances" "Slave Marriages" "Slaveowner Marriages">>
-	<<= App.Encyclopedia.Dialog.linkSC("Relationships", "Relationships")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Rivalries", "Rivalries")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Romances", "Romances")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Emotionally Bonded", "Emotionally Bonded")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Emotional Slut", "Emotional Slut")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Slave Marriages", "Slave Marriages")>>
-	| <<= App.Encyclopedia.Dialog.linkSC("Slaveowner Marriages", "Slaveowner Marriages")>>
-
 /**********
 PREGNANCY
 **********/
diff --git a/src/gui/Encyclopedia/encyclopediaSlaveRelationships.js b/src/gui/Encyclopedia/encyclopediaSlaveRelationships.js
new file mode 100644
index 0000000000000000000000000000000000000000..224b1fa7312d0a1433201439182fa27d7f3c479e
--- /dev/null
+++ b/src/gui/Encyclopedia/encyclopediaSlaveRelationships.js
@@ -0,0 +1,97 @@
+App.Encyclopedia.addArticle("Relationships", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		"Slaves can develop many different", App.UI.DOM.makeElement("span", "relationships", ["bold"]), "as they become accustomed to their lives, which offer many benefits and some downsides.",
+		"It is possible for the player to push slaves towards one kind of relationship or another, but slaves' feelings are less susceptible to complete control than their bodies.",
+		"All relationships in Free Cities are one-to-one, which is a limitation imposed by Twine."
+	], "div");
+	return t;
+}, "SlaveRelationships");
+
+App.Encyclopedia.addArticle("Rivalries", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Rivalries", ["bold"]), "tend to arise naturally between slaves on the same assignment.",
+		"Slaves may enjoy rivals' misfortunes, but bickering on the job between rivals will impede performance if the rivals remain on the same assignment.",
+		"Rivals will also dislike working with each other.",
+		"Rivalries may be defused naturally with time apart, or suppressed by rules.",
+		"Rivalries impede the formation of", App.Encyclopedia.Dialog.linkDOM("romances"), ", but a romance can defuse a rivalry."
+	], "div");
+	return t;
+}, "SlaveRelationships");
+
+App.Encyclopedia.addArticle("Romances", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Romances", ["bold"]), "tend to arise naturally between slaves on the same assignment, and between slaves having a lot of sex with each other.",
+		"Slaves will be saddened by their romantic partners' misfortunes, but will do better on public sexual assignments if assigned to work at the same job as a romantic partner.",
+		"Slaves will also derive various mental effects from being in a relationship: they can rely on each other, take solace in each other's company, and even learn fetishes from each other.",
+		"Romances can be suppressed by the rules, or fall apart naturally.",
+		"On the other hand, romances can develop from friendships, to best friendships, to friendships with benefits, to loving relationships.",
+		"Romances impede the formation of", App.Encyclopedia.Dialog.linkDOM("rivalries"), "and can defuse them.",
+		"Once a romance has advanced to where the slaves are lovers, its members are eligible for several events in which the couple can be", App.Encyclopedia.Dialog.linkDOM("married.", "Slave Marriages")
+	], "div");
+	return t;
+}, "SlaveRelationships");
+
+App.Encyclopedia.addArticle("Emotionally Bonded", function() {
+	const devotion = (text) => App.Encyclopedia.Dialog.linkDOM(text, "From Rebellious to Devoted", "hotpink");
+	const trust = (text) => App.Encyclopedia.Dialog.linkDOM(text, "Trust", "mediumaquamarine");
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Emotionally Bonded", ["bold"]), "slaves have become so", devotion("devoted"), "to the player character that they define their own happiness mostly in terms of pleasing the PC.",
+		"Slaves may become emotionally bonded if they become perfectly", devotion("devoted"), "and", trust("trusting"), "without being part of a", App.Encyclopedia.Dialog.linkDOM("romance.", "Romances"),
+		"They receive powerful mental benefits — in fact, they are likely to accept anything short of sustained intentional abuse without lasting displeasure — and perform better at the",
+		App.Encyclopedia.Dialog.linkDOM("servitude"), "and", App.Encyclopedia.Dialog.linkDOM("fucktoy"), "assignments.",
+		"The most reliable way of ensuring a slave's development of emotional bonds is to have her assigned as a fucktoy or to the",
+		App.Encyclopedia.Dialog.linkDOM("Master suite"), "as she becomes perfectly", devotion("devoted"), "and", trust("trusting.")
+	], "div");
+	return t;
+}, "SlaveRelationships");
+
+App.Encyclopedia.addArticle("Emotional Slut", function() {
+	const devotion = (text) => App.Encyclopedia.Dialog.linkDOM(text, "From Rebellious to Devoted", "hotpink");
+	const trust = (text) => App.Encyclopedia.Dialog.linkDOM(text, "Trust", "mediumaquamarine");
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Emotional sluts", ["bold"]), "are slaves who have lost track of normal human emotional attachments, seeing sex as the only real closeness.",
+		"Slaves may become emotional sluts if they become perfectly", devotion("devoted"), "and", trust("trusting"), "without being part of a", App.Encyclopedia.Dialog.linkDOM("romance.", "Romances"),
+		"They receive powerful mental benefits, though they will be disappointed if they are not on assignments that allow them to be massively promiscuous, and perform better at the", App.Encyclopedia.Dialog.linkDOM("whoring"), "and", App.Encyclopedia.Dialog.linkDOM("public service", "Public Service"), "assignments.",
+		"The most reliable way of ensuring a slave's development into an emotional slut is to have her assigned as a public servant or to the", App.Encyclopedia.Dialog.linkDOM("Club"), "as she becomes perfectly", devotion("devoted"), "and", trust("trusting"), "."
+	], "div");
+	return t;
+}, "SlaveRelationships");
+
+App.Encyclopedia.addArticle("Slave Marriages", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Slave Marriages", ["bold"]), "take place between two slaves.",
+		"Several random events provide the opportunity to marry slave lovers. Slave Marriages function as an end state for slave",
+		App.Encyclopedia.Dialog.linkDOM("romances"), ";", "slave wives receive the best relationship bonuses, and can generally be depended upon to help each other be good slaves in various ways. The alternative end states for slaves' emotional attachments are the",
+		App.Encyclopedia.Dialog.linkDOM("emotional slut", "Emotional Slut"), "and", App.Encyclopedia.Dialog.linkDOM("emotionally bonded", "Emotionally Bonded"), "statuses, both of which are for a single slave alone."
+	], "div");
+	return t;
+}, "SlaveRelationships");
+
+App.Encyclopedia.addArticle("Slaveowner Marriages", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Slaveowner Marriages", ["bold"]), ", marriages between a", App.Encyclopedia.Dialog.linkDOM("devoted", "From Rebellious to Devoted", "hotpink"), "slave and the player character, require passage of a slaveowner marriage policy unlocked by advanced", App.Encyclopedia.Dialog.linkDOM("paternalism"), ". Once this policy is in place,",
+		App.Encyclopedia.Dialog.linkDOM("emotionally bonded", "Emotionally Bonded"), "slaves can be married.",
+		"There is no limit to the number of slaves a paternalist player character can marry.",
+		"Marriage to the player character functions as a direct upgrade to being emotionally bonded."
+	], "div");
+	return t;
+}, "SlaveRelationships");
+
+App.Encyclopedia.addCategory("SlaveRelationships", function() {
+	const r = [];
+	r.push(App.Encyclopedia.Dialog.linkDOM("Relationships"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Rivalries"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Romances"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Emotionally Bonded"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Emotional Slut"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Slave Marriages"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Slaveowner Marriages"));
+	return App.UI.DOM.generateLinksStrip(r);
+});
diff --git a/src/gui/Encyclopedia/encyclopediaSlaveSkills.js b/src/gui/Encyclopedia/encyclopediaSlaveSkills.js
new file mode 100644
index 0000000000000000000000000000000000000000..445649c16bc9f832b02724a61add32558b2859d8
--- /dev/null
+++ b/src/gui/Encyclopedia/encyclopediaSlaveSkills.js
@@ -0,0 +1,80 @@
+App.Encyclopedia.addArticle("Skills", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [App.UI.DOM.makeElement("span", "Future room for lore text", ["note"])], "div");
+	App.Events.addNode(t, ["Choose a more particular entry below:"], "div");
+	return t;
+}, "SlaveSkills");
+
+App.Encyclopedia.addArticle("Anal Skill", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t,[
+		App.UI.DOM.makeElement("span", "Anal skill", ["bold"]), "improves performance on sexual assignments and is available in three levels.",
+		"Training methods include schooling (up to level one), plugs (up to level one), personal attention (unlimited), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited).",
+		App.Encyclopedia.Dialog.linkDOM("Anus", "Anuses"), "surgery can reduce this skill."
+	], "div");
+	return t;
+}, "SlaveSkills");
+
+App.Encyclopedia.addArticle("Combat Skill", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Combat skill", ["bold"]), "is available in one level only.",
+		"It improves performance in lethal and nonlethal pit fights and performance as the Bodyguard.",
+		"Training methods are limited to on the job experience (including pit fights) and events."
+	], "div");
+	return t;
+}, "SlaveSkills");
+
+App.Encyclopedia.addArticle("Entertainment Skill", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Entertainment skill", ["bold"]), "is available in three levels.",
+		"It improves performance on all sexual assignments, though it affects public service or working in the club most.",
+		"Training methods include schooling (up to level one), personal attention (up to level one), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited)."
+	], "div");
+	return t;
+}, "SlaveSkills");
+
+App.Encyclopedia.addArticle("Oral Skill", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Oral skill", ["bold"]), "improves performance on sexual assignments and is available in three levels.",
+		"Training methods include schooling (up to level one), gags (up to level one), personal attention (unlimited), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited).",
+		App.Encyclopedia.Dialog.linkDOM("Lip", "Lips"), "surgery can reduce this skill."
+	], "div");
+	return t;
+}, "SlaveSkills");
+
+App.Encyclopedia.addArticle("Vaginal Skill", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Vaginal skill", ["bold"]), "improves performance on sexual assignments and is available in three levels.",
+		"Training methods include schooling (up to level one), plugs (up to level one), personal attention (unlimited), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited).",
+		"Slaves without vaginas cannot learn or teach this skill, limiting their ultimate skill ceiling.",
+		App.Encyclopedia.Dialog.linkDOM("Vagina", "Vaginas"), "surgery can reduce this skill."
+	], "div");
+	return t;
+}, "SlaveSkills");
+
+App.Encyclopedia.addArticle("Whoring Skill", function() {
+	const t = new DocumentFragment();
+	App.Events.addNode(t, [
+		App.UI.DOM.makeElement("span", "Whoring skill", ["bold"]), "is available in three levels.",
+		"It improves performance on all sexual assignments, though it affects whoring or working in the brothel most.",
+		"Training methods include schooling (up to level one), personal attention (up to level one), Head Girl attention (up to the Head Girl's skill), and on the job experience (unlimited)."
+	], "div");
+	return t;
+}, "SlaveSkills");
+
+App.Encyclopedia.addCategory("SlaveSkills", function() {
+	const r = [];
+	r.push(App.Encyclopedia.Dialog.linkDOM("Skills"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Anal Skill"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Combat Skill"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Entertainment Skill"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Oral Skill"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Vaginal Skill"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Whoring Skill"));
+	r.push(App.Encyclopedia.Dialog.linkDOM("Career Experience"));
+	return App.UI.DOM.generateLinksStrip(r);
+});