new thingy

This commit is contained in:
Lily-129 2022-01-28 10:40:07 -05:00 committed by GitHub
parent 94c5f411c7
commit 7d07d62d35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

View File

@ -145,6 +145,23 @@ elements.globalwarmer = {
hidden: true,
},
elements.agw = { //adjustable global warmer
color: "#66ff66",
tick: function(pixel) {
for (var i = 1; i < width; i++) {
for (var j = 1; j < height; j++) {
if (!isEmpty(i,j)) {
pixelMap[i][j].temp = pixel.temp
}
}
}
},
category: "machines",
insulate: true,
state: "solid",
hidden: true,
},
elements.sencc = { //same element neighbor count check
color: "#000000",
uwu: 0,