From 58c12d10676c13c1d153b85032af482d3f232dd8 Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Sat, 11 Oct 2025 13:00:18 -0400 Subject: [PATCH] Update devsnacks.js --- mods/devsnacks.js | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/mods/devsnacks.js b/mods/devsnacks.js index e63e7a54..20734dc8 100644 --- a/mods/devsnacks.js +++ b/mods/devsnacks.js @@ -133,4 +133,28 @@ elements.applesauce = { density: 750, isFood: true, hidden: true, -} \ No newline at end of file +} + +if (!elements.mayo.reactions) elements.mayo.reactions = {}; +elements.mayo.reactions.ketchup = { elem1:"mayochup", elem2:"mayochup" } + +elements.mayochup = { + color: "#FDCC94", + behavior: behaviors.LIQUID, + reactions: { + "rust": { elem2:"iron", chance:0.005 }, + "oxidized_copper": { elem2:"copper", chance:0.005 }, + "baking_soda": { "elem1":"carbon_dioxide", elem2:"foam", chance:0.005, attr2:{"foam":3} }, + "glue": { elem2:null, chance:0.005 }, + "oil": { elem2:null, chance:0.005 }, + "sap": { elem2:null, chance:0.005 } + }, + viscosity: 26745.5, + tempHigh: 180.3, + stateHigh: ["carbon_dioxide","methane","steam","salt","sugar","steam","carbon_dioxide","methane"], + category:"liquids", + state: "liquid", + density: 1072.5, + isFood: true, + hidden: true +}; \ No newline at end of file