From 7df60edb1117b33f9a09b18e910e9d4b4fdbc45a Mon Sep 17 00:00:00 2001 From: sq <> Date: Fri, 22 Aug 2025 17:55:44 +0800 Subject: [PATCH] pistachio --- mods/aChefsDream.js | 9 ++++---- mods/aChefsDream2.js | 49 ++++++++++++++++++++++++++++++++++++---- mods/aChefsDream_beta.js | 2 +- 3 files changed, 50 insertions(+), 10 deletions(-) diff --git a/mods/aChefsDream.js b/mods/aChefsDream.js index 93318077..65dd5dc5 100644 --- a/mods/aChefsDream.js +++ b/mods/aChefsDream.js @@ -1,5 +1,6 @@ -// created by SquareScreamYT -// https://github.com/SquareScreamYT/aChefsDream.js +// created by SquareScreamYT/sq +// https://github.com/SquareScreamYT/ +// https://youtube.com/@sqec runAfterLoad(function() { console.log("Thanks for using aChefsDream.js! -sqec") @@ -7447,8 +7448,8 @@ elements.raw_beef = { stateHigh: "steak", reactions: { "smoke": {elem1: "smoked_beef"}, - "charcoal": {elem1: "barbecued_beef", tempMin: 70}, - "fire": {elem1: "barbecued_beef"} + "charcoal": {elem1: "brisket", tempMin: 70}, + "fire": {elem1: "brisket"} } }; diff --git a/mods/aChefsDream2.js b/mods/aChefsDream2.js index 45b74af4..4a089e68 100644 --- a/mods/aChefsDream2.js +++ b/mods/aChefsDream2.js @@ -1,14 +1,18 @@ -// created by SquareScreamYT // the sequel to aChefsDream! +// created by SquareScreamYT/sq +// https://github.com/SquareScreamYT/ +// https://youtube.com/@sqec + +version = "v2.1.0" + +runAfterLoad(function() { + console.log("Current aChefsDream version: "+version) +}) dependOn("aChefsDream.js", function(){ console.log("we recommend using nousersthings.js, elementEraser.js and delete_all_of_element.js for a better cooking experience!") - - - - // Pork and Pigs elements.pig = { @@ -553,7 +557,42 @@ var spices = [ } }*/ +elements.pistachio = { + color: ["#E8D5B7", "#F2E3C1", "#DDD0A8"], + behavior: behaviors.POWDER, + category: "food", + state: "solid", + isFood: true, + temp: 20, + tempHigh: 250, + stateHigh: ["ash", "smoke"], + breakInto: "pistachio_powder", + cutInto: "pistachio_meat" +} +elements.pistachio_meat = { + color: ["#98C93A", "#A3D645", "#8BB832"], + behavior: behaviors.POWDER, + category: "food", + state: "solid", + isFood: true, + temp: 20, + tempHigh: 250, + stateHigh: ["ash", "smoke"], + breakInto: "pistachio_powder", + hidden: true +} +elements.pistachio_powder = { + color: ["#7A9B2F", "#85A635", "#6F8728"], + behavior: behaviors.POWDER, + category: "food", + state: "solid", + isFood: true, + temp: 20, + tempHigh: 250, + stateHigh: ["ash", "smoke"], + hidden: true +} },true) \ No newline at end of file diff --git a/mods/aChefsDream_beta.js b/mods/aChefsDream_beta.js index a2524503..bc711841 100644 --- a/mods/aChefsDream_beta.js +++ b/mods/aChefsDream_beta.js @@ -1,7 +1,7 @@ // created by SquareScreamYT // please visit the repo to see the code -fetch('https://raw.githubusercontent.com/SquareScreamYT/aChefsDream.js/main/aChefsDream.js') +fetch('https://raw.githubusercontent.com/SquareScreamYT/sandboxels/main/mods/aChefsDream2.js') .then(response => response.text()) .then(code => { eval(code);