Merge pull request #239 from Clide4/main

More Foods Mod 1.1
This commit is contained in:
slweeb 2024-01-05 16:10:06 -05:00 committed by GitHub
commit 37fc6c65dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 47 additions and 0 deletions

47
mods/morefoodsmod.js Normal file
View File

@ -0,0 +1,47 @@
elements.chowder = {
color: "#c7c98b",
behavior: behaviors.POWDER,
category: "food",
state: "solid",
reactions: {
"water": { elem1: null, elem2: "soup" },
},
};
elements.soup = {
color: "#c28719",
behavior: behaviors.LIQUID,
category: "food",
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" }