From 241fb0a21cb0b9f0cc930fa5d86eae979f0c1cf6 Mon Sep 17 00:00:00 2001 From: DCoded <dcoded@live.com> Date: Wed, 5 Aug 2020 00:59:03 -0400 Subject: [PATCH] Rearranging --- src/endWeek/reports/childrenReport.js | 70 +++++++++++++-------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/src/endWeek/reports/childrenReport.js b/src/endWeek/reports/childrenReport.js index e4f6aec1511..1708aca0eea 100644 --- a/src/endWeek/reports/childrenReport.js +++ b/src/endWeek/reports/childrenReport.js @@ -280,41 +280,6 @@ App.Facilities.Nursery.childrenReport = function childrenReport() { // MARK: Miscellaneous Functions - function newChildFetish(fetish = "none") { - switch (fetish) { - case "submissive": - return `is now sexually submissive`; - case "cumslut": - return `is now a cumslut`; - case "humiliation": - return `now has a fetish for humiliation`; - case "buttslut": - return `is now a buttslut`; - case "boobs": - return `now has a fetish for all things breast-related`; - case "sadist": - return `now gets off on causing pain`; - case "masochist": - return `now gets off on pain`; - case "dom": - return `is now very sexually dominant`; - case "pregnancy": - return `has developed a facination for all things pregnancy-related`; - default: - throw `<span class="error">Unexpected fetish value of "${fetish}" in newChildFetish(). Please report this.</span>`; - } - } - - function childGrowTime(child) { - const { He } = getPronouns(child); - - if (child.growTime > 0) { - return `<span class="pink">${child.slaveName}</span> is growing steadily. ${He} will be ready for release in about ${years(child.growTime)}.`; - } else { - return `<span class="pink">${child.slaveName}</span> is <span class="lime">ready for release.</span> ${He} will be removed from ${V.nurseryName} upon your approach.`; - } - } - // TODO: add relation checks function childFriendshipRivalries(child) { const @@ -392,6 +357,41 @@ App.Facilities.Nursery.childrenReport = function childrenReport() { } } + function newChildFetish(fetish = "none") { + switch (fetish) { + case "submissive": + return `is now sexually submissive`; + case "cumslut": + return `is now a cumslut`; + case "humiliation": + return `now has a fetish for humiliation`; + case "buttslut": + return `is now a buttslut`; + case "boobs": + return `now has a fetish for all things breast-related`; + case "sadist": + return `now gets off on causing pain`; + case "masochist": + return `now gets off on pain`; + case "dom": + return `is now very sexually dominant`; + case "pregnancy": + return `has developed a facination for all things pregnancy-related`; + default: + throw `<span class="error">Unexpected fetish value of "${fetish}" in newChildFetish(). Please report this.</span>`; + } + } + + function childGrowTime(child) { + const { He } = getPronouns(child); + + if (child.growTime > 0) { + return `<span class="pink">${child.slaveName}</span> is growing steadily. ${He} will be ready for release in about ${years(child.growTime)}.`; + } else { + return `<span class="pink">${child.slaveName}</span> is <span class="lime">ready for release.</span> ${He} will be removed from ${V.nurseryName} upon your approach.`; + } + } + function findMedianNannyIntelligence() { const intelligenceValues = []; -- GitLab