diff --git a/src/endWeek/saNanny.js b/src/endWeek/saNanny.js
new file mode 100644
index 0000000000000000000000000000000000000000..6f7227f046fb5f09859dbf29f1f01c3ef548dea5
--- /dev/null
+++ b/src/endWeek/saNanny.js
@@ -0,0 +1,27 @@
+/**
+ * @param {App.Entity.SlaveState} slave
+ * @returns {string}
+ */
+window.saNanny = function saNanny(slave) {
+	"use strict";
+	const V = State.variables;
+	/* eslint-disable */
+	const pronouns = getPronouns(slave);
+	const he = pronouns.pronoun;
+	const him = pronouns.object;
+	const his = pronouns.possessive;
+	const hers = pronouns.possessivePronoun;
+	const himself = pronouns.objectReflexive;
+	const boy = pronouns.noun;
+	const He = capFirstChar(he);
+	const His = capFirstChar(his);
+	/* eslint-enable */
+
+	let t = `works as a nanny this week. `;
+
+	if (V.Matron) {
+		t += `effects here`;
+	}
+
+	return t;
+};