Merge pull request #1044 from MicaelNotUsed/main

Add Stainless Steel
This commit is contained in:
slweeb 2025-03-14 20:35:29 -04:00 committed by GitHub
commit ab6574ec3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 37 additions and 0 deletions

37
mods/stainless_steel.js Normal file
View File

@ -0,0 +1,37 @@
// obtaining chromium (makes chrome)
elements.magma.stateLow = ["rock", "basalt", "basalt", "basalt", "chromite"];
// chrome
elements.chromite = {
color: ["#372d38", "#6e6e6e"],
behavior: behaviors.POWDER,
state: "solid",
category: "powders",
tempHigh: 2180,
stateHigh: "magma",
};
// stainless steel
elements.stainless_steel = {
color: "#454545",
behavior: behaviors.WALL,
state: "solid",
category: "solids",
tempHigh: 1510,
};
// chrome
elements.chrome = {
color: "#c4c4c4",
behavior: behaviors.WALL,
state: "solid",
category: "solids",
tempHigh: 1900,
reactions: {
"molten_steel": { elem2:"molten_stainless_steel", tempMin:1800, tempMax:2000 }
},
alias: "chromium",
};
// obtaining chrome (makes stainless steel)
elements.molten_aluminum.reactions.chromite = { elem2:"chrome", tempMin:1000, tempMax:1200, chance:0.1 };