Update CoCpu.js
Changelog -Add CO detector -Remove Conductivity at CPU and Computer until found the problem
This commit is contained in:
parent
1697733dfa
commit
eefec5adea
|
|
@ -67,10 +67,24 @@ elements.computer = {
|
||||||
density: 8908,
|
density: 8908,
|
||||||
tempHigh: 1414,
|
tempHigh: 1414,
|
||||||
stateHigh: "explosion",
|
stateHigh: "explosion",
|
||||||
conduct: 1,
|
|
||||||
reactions: {
|
reactions: {
|
||||||
"virus": { elem1 : null , elem2:"malware", chance:0.9 },
|
"virus": { elem1 : null , elem2:"malware", chance:0.9 },
|
||||||
"water": { elem1: null , elem2: "electric" },
|
"water": { elem1: null , elem2: "electric" },
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
elements.carbon_monoxide_detector = {
|
||||||
|
behavior: behaviors.WALL,
|
||||||
|
desc: "give red light and electric when found Carbon Monoxide touch",
|
||||||
|
color: "#ffffff",
|
||||||
|
reactions: {
|
||||||
|
"carbon_monoxide": {"charge1":1},
|
||||||
|
},
|
||||||
|
conduct: 1,
|
||||||
|
tempHigh: 1550,
|
||||||
|
stateHigh: ["molten_metal_scrap","electric","molten_plastic"],
|
||||||
|
colorOn: "#ff0000",
|
||||||
|
movable: false,
|
||||||
|
category:"machines",
|
||||||
|
darkText: true,
|
||||||
|
hardness: 1,
|
||||||
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue