pistachio
This commit is contained in:
parent
212d53e6e6
commit
7df60edb11
|
|
@ -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"}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue