Update tech.js

Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com>
This commit is contained in:
HACKERPRO908 2024-03-20 07:30:19 +00:00 committed by GitHub
parent 8dccee116c
commit ff6e8a1331
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 28 additions and 7 deletions

View File

@ -1,7 +1,7 @@
elements.monitor_case = {
color: "#4a4848",
behavior: behaviors.SOLID,
category: "machines",
category: "tech",
state: "solid",
density: 500,
};
@ -13,43 +13,64 @@ elements.pc_core = {
"SH|XX|SH",
"XX|SH|XX",
],
category: "machines",
category: "tech",
tempHigh: 8000,
stateHigh: ["molten_steel","explosion","molten_iron"]
reactions: {
"water": { elem1: "explosion", elem2: "null" },
"malware": { elem1: "null", elem2: "null" },
}
};
elements.malfunctioned_wire = {
color: "#6d32a8",
behavior: behaviors.WALL,
category: "tech",
conduct: 999,
noMix: true
};
elements.red_wire = {
color: "#ff3d1f",
behavior: behaviors.WALL,
category: "machines",
category: "tech",
insulate: true,
conduct: 3,
noMix: true
reactions: {
"water": { elem1: "malfunctioned_wire", elem2: "null" },
}
};
elements.green_wire = {
color: "#66c22d",
behavior: behaviors.WALL,
category: "machines",
category: "tech",
insulate: true,
conduct: 3,
noMix: true
reactions: {
"water": { elem1: "malfunctioned_wire", elem2: "null" },
}
};
elements.blue_wire = {
color: "#1f81cc",
behavior: behaviors.WALL,
category: "machines",
category: "tech",
insulate: true,
conduct: 3,
noMix: true
reactions: {
"water": { elem1: "malfunctioned_wire", elem2: "null" },
}
};
elements.electrogalvanized = {
color: "#6c6e70",
behavior: behaviors.WALL,
category: "machines",
category: "tech",
state: "solid",
conduct: 2,
density: 7850,
};
};s