From 8e3011f70e17d2cc1d5660538a316b32d05e82c1 Mon Sep 17 00:00:00 2001 From: therealsuss <167750109+therealsuss@users.noreply.github.com> Date: Wed, 18 Dec 2024 22:13:27 +1100 Subject: [PATCH] bromine mod thingy --- mods/bromine.js | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 mods/bromine.js diff --git a/mods/bromine.js b/mods/bromine.js new file mode 100644 index 00000000..c43307c5 --- /dev/null +++ b/mods/bromine.js @@ -0,0 +1,40 @@ +// coded by suss, so the code probably sucks +// lmao it only adds three elements, actually this is my first mod that even ADDS elements +// wait, nobody even reads the mod code, so im essentially talking to myself +// oh well :( + +elements.bromine = { + color: "#4e0e00", + behavior: [ + "XX|CR:bromine_vapor%5|XX", + "M2|XX|M2", + "XX|M1|XX", + ], + category: "liquids", + viscosity: 1.5, + state: "liquid", + density: 3102, + tempLow: -7, + stateLow: "bromine_ice", +}; + +elements.bromine_ice = { + color: "#350900", + behavior: behaviors.WALL, + category: "states", + state: "solid", + density: 3102, + tempHigh: -7, + stateHigh: "bromine", + temp: -10, + hidden: true, +}; + +elements.bromine_vapor = { + color: "#d48846", + behavior: behaviors.GAS, + category: "gases", + state: "gas", + density: 7.59, + hidden: true, +} \ No newline at end of file