Fix heatshield.js
This commit is contained in:
parent
626c0ebf3a
commit
65a82a1eb7
|
|
@ -1,8 +1,30 @@
|
|||
elements.Carbon_Fiber = {
|
||||
color: "#222222",
|
||||
elements.ablative_shield = {
|
||||
color: "#d6999c",
|
||||
behavior: behaviors.WALL,
|
||||
category: "solids",
|
||||
state: "solid",
|
||||
temphigh: 6700,
|
||||
statehigh: "lava",
|
||||
tempHigh: 2760,
|
||||
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