attempt at fixing slag

adds slag with a melting point
enable *after* neutronium or chalcopyrite
This commit is contained in:
Lily-129 2022-02-11 10:45:59 -05:00 committed by GitHub
parent 6332fb43a3
commit 67e8503b9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
mods/slag_fix.js Normal file
View File

@ -0,0 +1,25 @@
elements.slag = {
color: ["#4b3a2d","#6a5447","#6b5b53","#675851","#78756e"],
behavior: behaviors.POWDER,
tempHigh: 1780,
stateHigh: "molten_slag",
category: "powders",
density: 2400,
state: "solid",
conduct: 0.03,
movable: true,
}
elements.molten_slag = {
color: ["#964917","#963A17","#962C00","#D46924","#D45424","#D43F00","#D6722A","#D65B2A","#D64419","#CE6E29","#CE5829","#CE4200","#F09237","#F07537","#F05800"],
behavior: behaviors.MOLTEN,
temp: 1880,
tempLow: 1780,
stateLow: "slag",
viscosity: 10000,
hidden: true,
state: "liquid",
category: "molten",
density: 2160,
conduct: 0,
}