Add moretemptools.js mod

This commit is contained in:
Sightnado 2022-02-11 16:29:37 -05:00 committed by GitHub
parent 3a9e685423
commit 4fb1ed2954
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 35 additions and 0 deletions

35
mods/moretemptools.js Normal file
View File

@ -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",
};