From 49794f8f4d38ff5bfe56d3d2dc4212f6f6bf98db Mon Sep 17 00:00:00 2001 From: littlebodybigfart <158759469+littlebodybigfart@users.noreply.github.com> Date: Tue, 28 May 2024 11:20:12 +0300 Subject: [PATCH] Update limewater.js --- mods/limewater.js | 63 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 mods/limewater.js diff --git a/mods/limewater.js b/mods/limewater.js new file mode 100644 index 00000000..9fb271c8 --- /dev/null +++ b/mods/limewater.js @@ -0,0 +1,63 @@ +// first time making a mod so bare with me + + +elements.limewater = { + color: "#3baaff", + behavior: behaviors.LIQUID, + category: "liquids", + state: "liquid", + density: 2211, + tempHigh: 100, + stateHigh: ["steam", "slaked_lime"], + tempLow: 0, + stateLow: "limewater_ice", + reactions: {"carbon_dioxide": {elem1: "calcium_carbonate_solution", elem2: null }, + }, +}; +elements.limewater_ice = { + color: "#def0ff", + behavior: behaviors.WALL, + category: "solids", + state: "solid", + density: 2211, + temp: -5, + tempHigh: 2, + stateHigh: "limewater", +}; +elements.calcium_carbonate_solution = { + color: "#ffffff", + behavior: behaviors.LIQUID, + category: "liquids", + state: "liquid", + density: 2710, + tempHigh: 100, + stateHigh: ["steam", "calcium_carbonate"], +}; + +elements.calcium_carbonate = { + color: ["#ffffff", "#e3e3e3"], + behavior: behaviors.POWDER, + category: "liquids", + state: "liquid", + density: 2710, + temp: 20, + tempHigh: 825, + stateHigh: "molten_calcium_carbonate", +}; + +elements.molten_calcium_carbonate = { + color: ["#f5190a", "#d4180b", "#f5190a", "#423f3e"], + behavior: behaviors.MOLTEN, + category: "states", + state: "solid", + density: 2710, + temp: 900, + tempLow: 820, + viscosity: 100, + stateLow: "calcium_carbonate", + reactions: {"water": {elem1: "steam", elem2:"calcium_carbonate"}, + }, +}; + +if (!elements.water.reactions) { elements.water.reactions = {} } +elements.water.reactions.slaked_lime = { "elem1":"limewater", "elem2": "limewater"};