From 06eb0b789c81122914bb27aa55d4b830ad1832c6 Mon Sep 17 00:00:00 2001
From: DCoded <dcoded@live.com>
Date: Mon, 7 Jan 2019 22:06:02 -0500
Subject: [PATCH] Added printCost() function

---
 src/js/utilJS.tw | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/src/js/utilJS.tw b/src/js/utilJS.tw
index dbad455c2d1..0dd5aff3038 100644
--- a/src/js/utilJS.tw
+++ b/src/js/utilJS.tw
@@ -491,6 +491,33 @@ window.cashFormat = function(s) {
 	return "¤"+commaNum(s);
 };
 
+window.printCost = (function() {
+	let V;
+	let r;
+
+	function printCost(cost, upkeep, arcology) {
+		V = State.variables
+		r = "";
+		if (!upkeep) {
+			upkeep = 0
+		}
+		if (!arcology) {
+			arcology = 0
+		}
+			r += `//Costs <span class=yellowgreen><<print cashFormat(Math.trunc(` + cost
+		if (arcology == 0) {
+			r += `*${V.upgradeMultiplierArcology}))>></span>//`
+		} else {
+			r += `))>></span>//`
+		}
+		if (upkeep == 1) {
+			r += `// and will incur upkeep costs//`
+		}
+		return r;
+	};
+	return printCost;
+})();
+
 window.isFloat = function(n){
 	return n === +n && n !== (n|0);
 };
-- 
GitLab