Merge pull request #848 from smegmauser3304/main

Create incinerators.js
This commit is contained in:
slweeb 2024-11-16 13:05:48 -05:00 committed by GitHub
commit 3e9c5d893e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 29 additions and 0 deletions

29
mods/incinerators.js Normal file
View File

@ -0,0 +1,29 @@
elements.incinerator = {
color: "#e600ff",
desc: "A machine that works like the incinerate tool.",
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,
};