diff --git a/mods/aChefsDream2.js b/mods/aChefsDream2.js index a5a45cf6..47610d1a 100644 --- a/mods/aChefsDream2.js +++ b/mods/aChefsDream2.js @@ -1,23 +1,13 @@ // created by SquareScreamYT // the sequel to aChefsDream! -runAfterLoad(function() { - console.log("Thanks for using aChefsDream2.js! -sqec") -}) +dependOn("aChefsDream.js", function(){ + +console.log("we recommend using nousersthings.js, elementEraser.js and delete_all_of_element.js for a better cooking experience!") -var mods_to_include = ["mods/aChefsDream.js"] -var mods_included = mods_to_include.map(mod => enabledMods.includes(mod)); -var all_mods_included = mods_included.reduce(function(a,b) { return a && b }); -if(!all_mods_included) { - var mods_needed = mods_to_include.filter(function(modPath) { return !(enabledMods.includes(modPath)) }); - mods_needed.forEach(function(modPath) { - enabledMods.splice(enabledMods.indexOf("mods/aChefsDream2"),0,modPath); - }); - localStorage.setItem("enabledMods", JSON.stringify(enabledMods)); -} // Pork and Pigs @@ -390,4 +380,27 @@ elements.cola_syrup = { 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 +elements.sugar_water.reactions.cinnamon_powder = { elem1: "cola_syrup", elem2: null } + +elements.brisket = { + color:["#704534", "#6b3d2b", "#733526"], + behavior: behaviors.SUPPORT, + category: "food", + state: "solid", + temp:55, + tempHigh: 600, + stateHigh: ["ash","smoke"], + isFood: true, + hidden: true, +} + +if (!elements.cured_meat.reactions) elements.cured_meat.reactions = {}; +elements.cured_meat.reactions.smoke = { elem1: "brisket", elem2: null } + +elements.cured_meat.tempHigh = 111 + + + + + +},true) \ No newline at end of file