Add files via upload

This commit is contained in:
Clide4 2024-01-05 14:48:21 -03:00 committed by GitHub
parent c169e6caa6
commit acdf030d48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 1 deletions

View File

@ -15,4 +15,33 @@ elements.chowder = {
state: "liquid",
stateHigh: "chowder",
tempHigh: 100
};
};
elements.rice = {
color: "#f6f8ed",
behavior: behaviors.POWDER,
category: "food",
state: "solid",
reactions: {
"broth": { elem1: "risotto", elem2: null },
"beans": { elem1: null, elem2: "feijoada"},
},
};
elements.risotto = {
color: "#f8f4e9",
behavior: behaviors.SUPPORTPOWDER,
category: "food",
state: "solid",
};
elements.feijoada = {
color: "#291800",
behavior: behaviors.LIQUID,
category: "food",
state: "liquid",
viscosity: 9
};
if (!elements.milk.reactions) elements.milk.reactions = {};
elements.milk.reactions.corn = { elem1: null, elem2: "chowder" }