From acdf030d48ad6dc0fb862799c5858e8c36471f8a Mon Sep 17 00:00:00 2001 From: Clide4 <149531099+Clide4@users.noreply.github.com> Date: Fri, 5 Jan 2024 14:48:21 -0300 Subject: [PATCH] Add files via upload --- mods/morefoodsmod.js | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/mods/morefoodsmod.js b/mods/morefoodsmod.js index d7c7a164..9791eb3b 100644 --- a/mods/morefoodsmod.js +++ b/mods/morefoodsmod.js @@ -15,4 +15,33 @@ elements.chowder = { state: "liquid", stateHigh: "chowder", tempHigh: 100 - }; \ No newline at end of file + }; + + 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" } \ No newline at end of file