From 9893ec9941fa0708e48199a628c5adc8f08e5c49 Mon Sep 17 00:00:00 2001 From: SquareScreamYT Date: Sat, 8 Mar 2025 16:59:32 +0800 Subject: [PATCH] a chefs dream 2.0.1 --- mods/aChefsDream2.js | 70 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 68 insertions(+), 2 deletions(-) diff --git a/mods/aChefsDream2.js b/mods/aChefsDream2.js index 793ecd49..a5a45cf6 100644 --- a/mods/aChefsDream2.js +++ b/mods/aChefsDream2.js @@ -3,7 +3,6 @@ runAfterLoad(function() { console.log("Thanks for using aChefsDream2.js! -sqec") - console.log("You may find the prequel at aChefsDream.js") }) var mods_to_include = ["mods/aChefsDream.js"] @@ -248,6 +247,8 @@ elements.saffron = { stateHigh: ["ash", "smoke"], } +// sugarcane + elements.sugarcane_plant = { color: ["#fbc852","#dfad54"], behavior: [ @@ -324,4 +325,69 @@ elements.tea_leaves = { state: "solid", density: 1400, isFood: true, -} \ No newline at end of file +} +elements.cinnamon = { + color: "#986544", + reactions: { + "stench": { elem2:null, chance:0.25 }, + "steam": { elem2:"fragrance", chance:0.1 }, + "flea": { elem2:null, chance:0.01 }, + "termite": { elem2:null, chance:0.01 }, + "fly": { elem2:null, chance:0.01 }, + "ant": { elem2:null, chance:0.01 }, + "stink_bug": { elem2:null, chance:0.01 }, + }, + behavior: behaviors.STURDYPOWDER, + tempHigh: 300, + stateHigh: ["fire","smoke","smoke","smoke","ash"], + burn:10, + burnTime:300, + burnInto: ["fire","smoke","smoke","smoke","fragrance"], + category:"food", + state: "solid", + density: 1400, + isFood: true, + breakInto: "cinnamon_powder" +} +elements.cinnamon_powder = { + color: "#D2691E", + reactions: { + "stench": { elem2:null, chance:0.25 }, + "steam": { elem2:"fragrance", chance:0.1 }, + "flea": { elem2:null, chance:0.01 }, + "termite": { elem2:null, chance:0.01 }, + "fly": { elem2:null, chance:0.01 }, + "ant": { elem2:null, chance:0.01 }, + "stink_bug": { elem2:null, chance:0.01 }, + }, + behavior: behaviors.POWDER, + tempHigh: 300, + stateHigh: ["fire","smoke","smoke","smoke","ash"], + burn:10, + burnTime:300, + burnInto: ["fire","smoke","smoke","smoke","smoke","smoke","smoke","fragrance"], + category:"food", + state: "solid", + density: 1400, + isFood: true, +} +elements.cola_syrup = { + color: "#4f0e0e", + behavior: behaviors.LIQUID, + tempHigh: 170, + stateHigh: ["sugar","smoke","smoke"], + tempLow: -15, + category:"liquids", + state: "liquid", + viscosity: 15, + hidden: true, + density: 1400, + reactions: { + "seltzer": { elem1: ["cola_syrup", "cola_syrup", "foam"], elem2:"soda"}, + "soda": { elem1: "foam", chance:0.001}, + }, +} +if (!elements.sugar_water.reactions) elements.sugar_water.reactions = {}; +elements.sugar_water.reactions.lemon_juice = { elem1: "sugar_water", elem2: null, color1: "#fff7ba" } +if (!elements.sugar_water.reactions) elements.sugar_water.reactions = {}; +elements.sugar_water.reactions.cinnamon_powder = { elem1: "cola_syrup", elem2: null } \ No newline at end of file