Update Ultra_Steel.js

This commit is contained in:
TheOneAndOnlyD 2024-01-01 09:21:11 -08:00 committed by GitHub
parent 89727adcd2
commit a6372626a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 42 additions and 1 deletions

View File

@ -1,7 +1,7 @@
elements.Ultra_Steel = {
color: "#8f748f",
behavior: behaviors.WALL,
category: "solid",
category: "solids",
state: "solid",
tempHigh: 26525,
stateHigh: "Molten_Ultra_Steel",
@ -18,3 +18,44 @@ elements.Molten_Ultra_Steel = {
"molten_gold": { elem1: "salt", elem2: "salt" },
}
};
elements.Chocolate_Muffin = {
color: ["#7e4d32","#492500","#5e3400","#360101"],
behavior: behavior.WALL,
category: "food",
state: "solid",
};
elements.Cacao_Beans = {
color: "#48291C",
behavior: behaviors.POWDER,
breakInto: "Crushed_Cacao_Beans"
};
elements.Crushed_Cacao_Beans = {
color: ["#48291C","#543324","#3d251a"],
behavior: behaviors.POWDER,
reactions: {
"sugar": {elem1: "Chocolate_Mixture"}
};
elements.Chocolate_Mixture = {
color: ["#7B3F00","#572e03","#824a10"],
behavior: behaviors.POWDER,
reactions: {
"Milk": {elem1: "Chocolate"}
};
elements.Chocolate = {
color: "#48291C",
behavior: behaviors.WALL,
reactions: {
"Dough": {elem1: "Chocolate_Dough"}
};
elements.Chocolate_Dough = {
color: "#",
behavior: behaviors.LIQUID,
tempHigh: 450,
stateHigh: "Chocolate_Muffin",
};