Fix heatshield.js
This commit is contained in:
parent
626c0ebf3a
commit
65a82a1eb7
|
|
@ -1,8 +1,30 @@
|
||||||
elements.Carbon_Fiber = {
|
elements.ablative_shield = {
|
||||||
color: "#222222",
|
color: "#d6999c",
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
category: "solids",
|
category: "solids",
|
||||||
state: "solid",
|
state: "solid",
|
||||||
temphigh: 6700,
|
tempHigh: 2760,
|
||||||
statehigh: "lava",
|
stateHigh: "smoke",
|
||||||
|
conduct: 0.01,
|
||||||
};
|
};
|
||||||
|
elements.molten_reusable = {
|
||||||
|
color: "#ff9900",
|
||||||
|
behavior: behaviors.MOLTEN,
|
||||||
|
category: "states",
|
||||||
|
state: "liquid",
|
||||||
|
hidden: 1,
|
||||||
|
temp: 1261,
|
||||||
|
tempLow: 1259,
|
||||||
|
stateLow: "reusable_shield",
|
||||||
|
};
|
||||||
|
elements.reusable_shield = {
|
||||||
|
color: "#3c3c3c",
|
||||||
|
behavior: behaviors.WALL,
|
||||||
|
category: "solids",
|
||||||
|
state: "solid",
|
||||||
|
tempHigh: 1260,
|
||||||
|
stateHigh: "molten_reusable",
|
||||||
|
conduct: 0.01,
|
||||||
|
};
|
||||||
|
elements.plasma.temp = 2800
|
||||||
|
;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue