sandboxels/mods/igniter.js

20 lines
393 B
JavaScript
Raw Normal View History

2022-02-11 21:13:11 -05:00
elements.igniter = {
color: elements.fire.color,
tool: function(pixel) {
pixel.burnStart = pixelTicks;
pixel.burning = true;
},
category: "tools",
excludeRandom: true,
2022-02-11 21:18:04 -05:00
};
elements.extinguisher = {
color: "#bad1e3",
tool: function(pixel) {
if(pixel.burnStart) { delete pixel.burnStart }
pixel.burning = false;
},
category: "tools",
excludeRandom: true,
};