Merge pull request #197 from JustAGenericUsername/main

yummy black holes...
This commit is contained in:
slweeb 2023-12-23 14:01:12 -05:00 committed by GitHub
commit d0ea0bd14a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 35 additions and 1 deletions

View File

@ -1355,5 +1355,39 @@ elements.converter = {
},
ignore: ["converter", "wall", "ewall", "border"],
movable: false,
},
elements.blackhole_storage = {
color: "#171717",
behavior: behaviors.WALL,
category: "machines",
tick: function(pixel) {
if (!pixel.bhcontents){
pixel.bhcontents = [];
} else {
pixel.decidedcontent = pixel.bhcontents[Math.floor(Math.random()*pixel.bhcontents.length)];
}
for (var i = 0; i < squareCoords.length; i++) {
var coord = squareCoords[i];
var x = pixel.x+coord[0];
var y = pixel.y+coord[1];
if (!isEmpty(x,y) && (!pixel.charge && !pixel.chargeCD)) {
var otherPixel = pixelMap[x][y];
if (elements[otherPixel.element].movable == true){
pixel.bhcontents.push(otherPixel);
deletePixel(otherPixel.x, otherPixel.y);
}
} else if (pixel.charge && isEmpty(x,y) && pixel.decidedcontent){
var otherPixel = pixelMap[x][y];
pixel.decidedcontent.x = x;
pixel.decidedcontent.y = y;
delete pixel.decidedcontent.del;
otherPixel = pixel.decidedcontent;
currentPixels.push(pixel.decidedcontent);
pixel.bhcontents.splice(pixel.bhcontents.indexOf(pixel.decidedcontent), 1);
pixel.decidedcontent = pixel.bhcontents[Math.floor(Math.random()*pixel.bhcontents.length)];
}
}
},
movable: false,
conduct: 1,
}