From afbf8577a9bdf1076543d5231669debb0b889c58 Mon Sep 17 00:00:00 2001 From: StellarX20 <97905447+StellarX20@users.noreply.github.com> Date: Mon, 17 Jan 2022 17:10:48 -0500 Subject: [PATCH] Update Neutronium_Mod.js --- mods/Neutronium_Mod.js | 69 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 60 insertions(+), 9 deletions(-) diff --git a/mods/Neutronium_Mod.js b/mods/Neutronium_Mod.js index 3a216f09..b23b6ffb 100644 --- a/mods/Neutronium_Mod.js +++ b/mods/Neutronium_Mod.js @@ -92,14 +92,14 @@ elements.neutronium = { elements.fusion_catalyst = { name: "Fusion Catalyst", color: ["#ff0000", "#ffff00"], - behavior: behaviors.POWDER, + behavior: behaviors.GAS, category: "energy", state: "solid", density: 1500 }; elements.ionized_deuterium = { name: "Ionized Deuterium", - color: "#aa00ff", + color: "#c73097", behavior: behaviors.GAS, category: "energy", state: "gas", @@ -119,7 +119,9 @@ elements.neutronium = { state: "gas", density: 0.18, tempHigh: 9726.85, - stateHigh: "ionized_deuterium" + stateHigh: "ionized_deuterium", + tempLow: -254.43, + stateLow: "liquid_deuterium" }; elements.ionized_tralphium = { name: "Ionized Tralphium", @@ -144,13 +146,62 @@ elements.neutronium = { density: 0.165, tempHigh: 28726.85, stateHigh: "ionized_tralphium", - tempLow: -272.2, + tempLow: -269, stateLow: "liquid_tralphium" }; elements.ionized_helium = { - color: "#ff0000", - behavior: behaviors.POWDER, - category: "land", - state: "solid", - density: 10, + name: "Ionized Helium-4", + color: "#aa00ff", + behavior: behaviors.GAS, + category: "gases", + state: "gas", + density: 0.177, + temp: 30000, + tempLow: 28726.85, + stateLow: "helium" }; + elements.helium = { + name: "Helium-4", + color: "#fffacc", + behavior: behaviors.GAS, + category: "gases", + state: "gas", + density: 0.178, + tempHigh: 28726.85, + stateHigh: "ionized_helium", + tempLow: -272.2, + stateLow: "liquid_helium" +}; + elements.liquid_tralphium = { + name: "Liquid Tralphium", + color: "#c6d669", + behavior: behaviors.LIQUID, + category: "liquids", + state: "liquid", + density: 59, + temp: -274, + tempHigh: 269, + stateHigh: "Tralphium" +}; +elements.liquid_deuterium = { +name: "Liquid Deuterium", +color: "#bff2eb", +behavior: behaviors.LIQUID, +reactions: { +"oxygen": { "elem1":"heavy_water", "elem2":null }, +}, +category: "liquids", +state: "liquid", +density: 162.4, +temp: -260, +tempHigh: -254.43, +stateHigh: "deuterium" +}; +/* Unfinished: +Tritium +Neutron +Liquid Tritium +Ionized Tritium +Heavy Water +Liquid Helium +*/