Merge pull request #211 from TheOneAndOnlyD/main

This commit is contained in:
slweeb 2024-01-14 19:46:14 -05:00 committed by GitHub
commit eeb402da0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 41 additions and 0 deletions

View File

@ -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",
};