From 516f00988b949dd705165ea62216fcb7373f9497 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sun, 30 Aug 2020 21:19:23 -0400 Subject: [PATCH] fuck some places are pricey --- src/markets/schools/schools.js | 47 ++++++++++++++++++++++++++-------- 1 file changed, 36 insertions(+), 11 deletions(-) diff --git a/src/markets/schools/schools.js b/src/markets/schools/schools.js index e6d112246a4..b5619f7ba74 100644 --- a/src/markets/schools/schools.js +++ b/src/markets/schools/schools.js @@ -18,9 +18,14 @@ App.Markets.GRI = function() { App.UI.DOM.appendNewElement("p", el, r.join(" "), "scene-intro"); App.UI.DOM.appendNewElement("p", el, `GRI offers a fresh graduate for inspection via video call. The interview takes place in the graduate's bare-metal holding cell. Disturbingly, it is strongly reminiscent of an enclosure for a lab animal, only scaled up to contain a lab animal of human dimensions.`); - + let costMod = 1; + if (V.HA.schoolSale !== 0) { + costMod = 0.5; + } else if (V.HA.schoolUpgrade !== 0) { + costMod = 0.8; + } el.append( - App.UI.buyingFromSchoolControls("GRI") + App.UI.buyingFromSchoolControls("GRI", costMod) ); return el; @@ -50,9 +55,14 @@ App.Markets.LDE = function() { App.UI.DOM.appendNewElement("p", el, r.join(" "), "scene-intro"); App.UI.DOM.appendNewElement("p", el, `L'École des Enculées offers a fresh graduate for inspection via video call. The interview takes place in the dormitory for the oldest class of girls. Absurdly sexual squeals repeatedly interrupt the call, making it very clear that someone close by the interviewee is experiencing a strong combination of anal pain and anal pleasure.`); - + let costMod = 1; + if (V.HA.schoolSale !== 0) { + costMod = 0.5; + } else if (V.HA.schoolUpgrade !== 0) { + costMod = 0.8; + } el.append( - App.UI.buyingFromSchoolControls("LDE") + App.UI.buyingFromSchoolControls("LDE", costMod) ); return el; @@ -76,9 +86,14 @@ App.Markets.NUL = function() { App.UI.DOM.appendNewElement("p", el, r.join(" "), "scene-intro"); App.UI.DOM.appendNewElement("p", el, `Nueva Universidad de Libertad offers a fresh graduate for inspection via video call. The interview takes place in said graduate's dormitory. The room is sparse and utilitarian, and immaculately clean. Likely by design, it looks like the set from an old sci-fi movie.`); - + let costMod = 1; + if (V.HA.schoolSale !== 0) { + costMod = 0.5; + } else if (V.HA.schoolUpgrade !== 0) { + costMod = 0.8; + } el.append( - App.UI.buyingFromSchoolControls("NUL") + App.UI.buyingFromSchoolControls("NUL", costMod) ); return el; @@ -108,9 +123,14 @@ App.Markets.SCP = function() { App.UI.DOM.appendNewElement("p", el, ` St. Claver Preparatory offers a fresh graduate for inspection via video call. The interview takes place in a very obviously medical office, with medical supply robots wheeling past its glass walls and nurses hurrying to and fro. `); - + let costMod = 1; + if (V.HA.schoolSale !== 0) { + costMod = 0.5; + } else if (V.HA.schoolUpgrade !== 0) { + costMod = 0.8; + } el.append( - App.UI.buyingFromSchoolControls("SCP") + App.UI.buyingFromSchoolControls("SCP", costMod) ); return el; @@ -174,9 +194,14 @@ App.Markets.TGA = function() { App.UI.DOM.appendNewElement("p", el, r.join(" "), "scene-intro"); App.UI.DOM.appendNewElement("p", el, `The Gymnasium-Academy offers a fresh graduate for inspection via video call. The interview takes place in an office overlooking an expansive workout room, in which a large number of naked, fit young bodies are performing punishing workout routines.`); - + let costMod = 1; + if (V.HA.schoolSale !== 0) { + costMod = 0.5; + } else if (V.HA.schoolUpgrade !== 0) { + costMod = 0.8; + } el.append( - App.UI.buyingFromSchoolControls("TGA") + App.UI.buyingFromSchoolControls("TGA", costMod) ); return el; @@ -197,7 +222,7 @@ App.Markets.HA = function() { App.UI.DOM.appendNewElement("p", el, r.join(" "), "scene-intro"); App.UI.DOM.appendNewElement("p", el, `The Hippolyta Academy offers a fresh graduate for inspection. The interview takes place in one of the many training areas of the school, where the physical prowess of the candidate can be easily showcased.`); - let costMod; + let costMod = 1; if (V.HA.schoolSale !== 0) { costMod = 0.6; } else if (V.HA.schoolUpgrade !== 0) { -- GitLab