From 4fb1ed29544c68608d3781b1fa65c7682126665a Mon Sep 17 00:00:00 2001 From: Sightnado <47155841+Sightnado@users.noreply.github.com> Date: Fri, 11 Feb 2022 16:29:37 -0500 Subject: [PATCH] Add moretemptools.js mod --- mods/moretemptools.js | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 mods/moretemptools.js diff --git a/mods/moretemptools.js b/mods/moretemptools.js new file mode 100644 index 00000000..03b90888 --- /dev/null +++ b/mods/moretemptools.js @@ -0,0 +1,35 @@ +elements.superheat = { + color: "#ff2f2f", + tool: function(pixel) { + pixel.temp += 10 + }, + category: "tools", +}; +elements.supercool = { + color: "#2f2fff", + tool: function(pixel) { + pixel.temp += -10 + }, + category: "tools", +}; +elements.hyperheat = { + color: "#ff5f5f", + tool: function(pixel) { + pixel.temp += 50 + }, + category: "tools", +}; +elements.hypercool = { + color: "#5f5fff", + tool: function(pixel) { + pixel.temp += -50 + }, + category: "tools", +}; +elements.absolutezero = { + color: "#d1f7ff", + tool: function(pixel) { + pixel.temp = -273.15 + }, + category: "tools", +}; \ No newline at end of file