From df5ac754259c3e4840aa781423924ec28135275d Mon Sep 17 00:00:00 2001 From: JustARandomPlayerInSandBoxels Date: Fri, 22 Aug 2025 11:45:48 +0800 Subject: [PATCH] A graphite mod! Graphite will oxidize (reacts with oxygen) to carbon dioxide! And, will reacts to Fluorine (In mod element). If Graphite reacts to fluorine it will get Carbon Tetrafluoride (In mod element.) --- Graphite.js | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Graphite.js diff --git a/Graphite.js b/Graphite.js new file mode 100644 index 00000000..d185b346 --- /dev/null +++ b/Graphite.js @@ -0,0 +1,37 @@ +elements.graphite = { + color: "#030104", + behavior: behaviors.POWDER, + category: "land", + state: "solid", + tempHigh: 3600, + stateHigh: "charcoal", + reactions: { + "oxygen": { elem1: "carbon_dioxide", elem2: null, tempMin: 700 }, + "fluorine": { elem1: "carbon_tetrafluoride", elem2: null } + } +}; + +elements.fluorine = { + color: "#b5e61d", + behavior: behaviors.GAS, + category: "gas", + state: "gas", + density: 1.696, + reactions: { + "graphite": {elem1: "carbon_tetrafluoride", elem2: null } +}, + temp: 25, + flammable: false +}; + +elements.carbon_tetrafluoride = { + color: "#ccffff", + behavior: behaviors.GAS, + category: "gas", + density: 3.72, + flammable: false, + reactions: { + "fire": { elem1: "carbon_dioxide", elem2: "fluorine", tempMin: 2000 } + } +}; + \ No newline at end of file