This commit is contained in:
slweeb 2022-02-11 19:27:50 -05:00
commit 4cfa82c27d
2 changed files with 48 additions and 0 deletions

8
mods/CrashTestDummy.js Normal file
View File

@ -0,0 +1,8 @@
// This new crashtestdummy mod will be more used for code that I'm not sure will actually work
elements.sandreplacer = {
color: "#ff80ff",
tool: function(pixel) {
pixel.element = "sand"
},
category: "tools",
};

40
mods/moretemptools.js Normal file
View File

@ -0,0 +1,40 @@
elements.superheat = {
color: "#ff2f2f",
tool: function(pixel) {
pixel.temp += 10;
pixelTempCheck(pixel)
},
category: "tools",
};
elements.supercool = {
color: "#2f2fff",
tool: function(pixel) {
pixel.temp += -10;
pixelTempCheck(pixel)
},
category: "tools",
};
elements.hyperheat = {
color: "#ff5f5f",
tool: function(pixel) {
pixel.temp += 50;
pixelTempCheck(pixel)
},
category: "tools",
};
elements.hypercool = {
color: "#5f5fff",
tool: function(pixel) {
pixel.temp += -50;
pixelTempCheck(pixel)
},
category: "tools",
};
elements.absolutezero = {
color: "#d1f7ff",
tool: function(pixel) {
pixel.temp = -273.15;
pixelTempCheck(pixel)
},
category: "tools",
};