Fix heatshield.js

This commit is contained in:
TaterbobYT 2025-01-20 15:44:41 -06:00 committed by GitHub
parent 626c0ebf3a
commit 65a82a1eb7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 29 additions and 7 deletions

View File

@ -1,8 +1,30 @@
elements.Carbon_Fiber = {
color: "#222222",
behavior: behaviors.WALL,
category: "solids",
state: "solid",
temphigh: 6700,
statehigh: "lava",
elements.ablative_shield = {
color: "#d6999c",
behavior: behaviors.WALL,
category: "solids",
state: "solid",
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
;