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