Merge pull request #334 from quin2081/main

Mucho_frio_y_Calor.js
This commit is contained in:
slweeb 2024-02-08 22:59:13 -05:00 committed by GitHub
commit f736af2a87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
elements.Calor = {
color: "#ff2f2f",
tool: function(pixel) {
pixel.temp += 500000000000000000000500000000000000000000;
pixelTempCheck(pixel)
},
category: "tools",
};
elements.Frio = {
color: "#2f2fff",
tool: function(pixel) {
pixel.temp += -500000000000000000000500000000000000000000;
pixelTempCheck(pixel)
},
category: "tools",
};