From 03e4e180d7282d12b6ef9d10da1b51c19f9bef0e Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Thu, 22 Oct 2020 23:08:23 -0400 Subject: [PATCH] organize --- js/003-data/miscData.js | 49 +++++++++++++++++++++++------------------ 1 file changed, 28 insertions(+), 21 deletions(-) diff --git a/js/003-data/miscData.js b/js/003-data/miscData.js index e1a4265c53c..f4e402ae8da 100644 --- a/js/003-data/miscData.js +++ b/js/003-data/miscData.js @@ -1951,6 +1951,7 @@ App.Data.misc = { secExCombatPrestige: ["$He is well known for being a great commander.", "$He is famous for being an incredible commander.", "$He is known as a legendary commander all over the world."], schools: new Map([ + // Medical feel ["GRI", { title:"Growth Research Institute", nickname: "institute", @@ -1958,6 +1959,33 @@ App.Data.misc = { slaveNoun: "test subjects", get requirements() { return (V.seeDicks !== 100); } }], + ["TUO", { + title:"The Utopian Orphanage", + nickname: "institute", + branchName:"branch campus", + slaveNoun: "test subjects", + get requirements() { return (V.seeDicks !== 100); } + }], + + // Cowgirls + ["TCR", { + title:"The Cattle Ranch", + nickname: "farm", + branchName:"local pasture", + slaveNoun: "stock", + get requirements() { return (V.seeDicks !== 100); } + }], + + // Futa + ["TFS", { + title:"The Futanari Sisters", + nickname: "community", + branchName:"community", + slaveNoun: "graduates", + get requirements() { return (V.seeDicks !== 0); } + }], + + // Standard ["HA", { title:"The Hippolyta Academy", nickname: "school", @@ -1979,20 +2007,6 @@ App.Data.misc = { slaveNoun: "graduates", get requirements() { return (V.seeDicks !== 100); } }], - ["TCR", { - title:"The Cattle Ranch", - nickname: "farm", - branchName:"local pasture", - slaveNoun: "stock", - get requirements() { return (V.seeDicks !== 100); } - }], - ["TFS", { - title:"The Futanari Sisters", - nickname: "community", - branchName:"community", - slaveNoun: "graduates", - get requirements() { return (V.seeDicks !== 0); } - }], ["TGA", { title:"The Gymnasium-Academy", nickname: "school", @@ -2014,13 +2028,6 @@ App.Data.misc = { slaveNoun: "graduates", get requirements() { return (V.seeDicks !== 0); } }], - ["TUO", { - title:"The Utopian Orphanage", - nickname: "institute", - branchName:"branch campus", - slaveNoun: "test subjects", - get requirements() { return (V.seeDicks !== 100); } - }] ]), bioreactorFluids: { -- GitLab