diff --git a/mods/incinerators.js b/mods/incinerators.js new file mode 100644 index 00000000..6374800d --- /dev/null +++ b/mods/incinerators.js @@ -0,0 +1,29 @@ +elements.incinerator = { + color: "#e600ff", + desc: "It works like the incinerate tool but in machine.", + 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, +}; \ No newline at end of file