sandboxels/mods/incinerators.js

30 lines
665 B
JavaScript
Raw Permalink Normal View History

2024-11-13 21:08:50 -05:00
elements.incinerator = {
color: "#e600ff",
2024-11-15 20:07:12 -05:00
desc: "A machine that works like the incinerate tool.",
2024-11-13 21:08:50 -05:00
behavior: [
"XX|HT:10000|XX",
"HT:10000|XX|HT:10000",
"XX|HT:10000|XX",
],
category: "machines",
state: "solid",
insulate:true,
};
elements.e_incinerator = {
color: "#9802a8",
desc: "It works like the incinerator but it needs power to work.",
behavior: behaviors.WALL,
hardness: 0.5,
conduct: 1,
behaviorOn: [
"XX|HT:10000|XX",
"HT:10000|XX|HT:10000",
"XX|HT:10000|XX",
],
name: "E-Incinerator",
category: "machines",
state: "solid",
insulate:true,
2024-11-15 20:07:12 -05:00
};