Update tech.js
Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com>
This commit is contained in:
parent
8dccee116c
commit
ff6e8a1331
35
mods/tech.js
35
mods/tech.js
|
|
@ -1,7 +1,7 @@
|
||||||
elements.monitor_case = {
|
elements.monitor_case = {
|
||||||
color: "#4a4848",
|
color: "#4a4848",
|
||||||
behavior: behaviors.SOLID,
|
behavior: behaviors.SOLID,
|
||||||
category: "machines",
|
category: "tech",
|
||||||
state: "solid",
|
state: "solid",
|
||||||
density: 500,
|
density: 500,
|
||||||
};
|
};
|
||||||
|
|
@ -13,43 +13,64 @@ elements.pc_core = {
|
||||||
"SH|XX|SH",
|
"SH|XX|SH",
|
||||||
"XX|SH|XX",
|
"XX|SH|XX",
|
||||||
],
|
],
|
||||||
category: "machines",
|
category: "tech",
|
||||||
tempHigh: 8000,
|
tempHigh: 8000,
|
||||||
stateHigh: ["molten_steel","explosion","molten_iron"]
|
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 = {
|
elements.red_wire = {
|
||||||
color: "#ff3d1f",
|
color: "#ff3d1f",
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
category: "machines",
|
category: "tech",
|
||||||
insulate: true,
|
insulate: true,
|
||||||
conduct: 3,
|
conduct: 3,
|
||||||
noMix: true
|
noMix: true
|
||||||
|
reactions: {
|
||||||
|
"water": { elem1: "malfunctioned_wire", elem2: "null" },
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.green_wire = {
|
elements.green_wire = {
|
||||||
color: "#66c22d",
|
color: "#66c22d",
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
category: "machines",
|
category: "tech",
|
||||||
insulate: true,
|
insulate: true,
|
||||||
conduct: 3,
|
conduct: 3,
|
||||||
noMix: true
|
noMix: true
|
||||||
|
reactions: {
|
||||||
|
"water": { elem1: "malfunctioned_wire", elem2: "null" },
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.blue_wire = {
|
elements.blue_wire = {
|
||||||
color: "#1f81cc",
|
color: "#1f81cc",
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
category: "machines",
|
category: "tech",
|
||||||
insulate: true,
|
insulate: true,
|
||||||
conduct: 3,
|
conduct: 3,
|
||||||
noMix: true
|
noMix: true
|
||||||
|
reactions: {
|
||||||
|
"water": { elem1: "malfunctioned_wire", elem2: "null" },
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.electrogalvanized = {
|
elements.electrogalvanized = {
|
||||||
color: "#6c6e70",
|
color: "#6c6e70",
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
category: "machines",
|
category: "tech",
|
||||||
state: "solid",
|
state: "solid",
|
||||||
conduct: 2,
|
conduct: 2,
|
||||||
density: 7850,
|
density: 7850,
|
||||||
};
|
};s
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue