Skip to content
Snippets Groups Projects
Commit a3e1f70f authored by lowercasedonkey's avatar lowercasedonkey
Browse files

break up organs

parent f2ce17f9
No related branches found
No related tags found
1 merge request!8824break up organs
...@@ -3,7 +3,10 @@ ...@@ -3,7 +3,10 @@
* @returns {HTMLDivElement} * @returns {HTMLDivElement}
*/ */
App.Medicine.OrganFarm.growActions = function(slave) { App.Medicine.OrganFarm.growActions = function(slave) {
const el = new DocumentFragment();
const O = App.Medicine.OrganFarm.Organs; const O = App.Medicine.OrganFarm.Organs;
const canImplant = [];
const cantImplant = [];
// find already being grown/ready to implant organs // find already being grown/ready to implant organs
const slaveOrgans = {}; const slaveOrgans = {};
...@@ -29,7 +32,7 @@ App.Medicine.OrganFarm.growActions = function(slave) { ...@@ -29,7 +32,7 @@ App.Medicine.OrganFarm.growActions = function(slave) {
} }
} }
const div = document.createElement("div"); let div = document.createElement("div");
div.classList.add("grid-2columns-auto"); div.classList.add("grid-2columns-auto");
// create entries for each organ // create entries for each organ
...@@ -38,12 +41,12 @@ App.Medicine.OrganFarm.growActions = function(slave) { ...@@ -38,12 +41,12 @@ App.Medicine.OrganFarm.growActions = function(slave) {
O.forEach((organ, key) => { O.forEach((organ, key) => {
if (slaveOrgans[key] === 0) { if (slaveOrgans[key] === 0) {
if (organ.canGrow(slave)) { if (organ.canGrow(slave)) {
App.UI.DOM.appendNewElement("div", div, App.UI.DOM.passageLink(organ.name, "Remote Surgery", () => { (organ.implantActions[0].canImplant(slave) ? canImplant : cantImplant).push(App.UI.DOM.makeElement("div", App.UI.DOM.passageLink(organ.name, "Remote Surgery", () => {
App.Medicine.OrganFarm.growOrgan(slave, key); App.Medicine.OrganFarm.growOrgan(slave, key);
})); })));
const tooltip = typeof organ.tooltip === "string" ? organ.tooltip : organ.tooltip(slave); const tooltip = typeof organ.tooltip === "string" ? organ.tooltip : organ.tooltip(slave);
App.UI.DOM.appendNewElement("div", div, `Costs ${cashFormat(organ.cost)}${tooltip !== "" ? ` and ${tooltip}` : ""}.`, "detail"); (organ.implantActions[0].canImplant(slave) ? canImplant : cantImplant).push(App.UI.DOM.makeElement("div", `Costs ${cashFormat(organ.cost)}${tooltip !== "" ? ` and ${tooltip}` : ""}.`, "detail"));
} }
any = true; any = true;
} else if (slaveOrgans[key] > 0) { } else if (slaveOrgans[key] > 0) {
...@@ -65,6 +68,17 @@ App.Medicine.OrganFarm.growActions = function(slave) { ...@@ -65,6 +68,17 @@ App.Medicine.OrganFarm.growActions = function(slave) {
App.UI.DOM.appendNewElement("div", div, growing[i].text); App.UI.DOM.appendNewElement("div", div, growing[i].text);
} }
} }
if (canImplant.length > 0) {
App.UI.DOM.appendNewElement("div", div, "Can implant immediately", "bold");
App.UI.DOM.appendNewElement("div", div);
canImplant.forEach(c => div.append(c));
}
if (cantImplant.length > 0) {
App.UI.DOM.appendNewElement("div", div, "Can't implant immediately", "bold");
App.UI.DOM.appendNewElement("div", div);
cantImplant.forEach(c => div.append(c));
}
el.append(div);
if (any) { if (any) {
return div; return div;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment