Skip to content

Commit

Permalink
tweak: pizza recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Yarden-zamir committed Feb 7, 2024
1 parent ef2b266 commit a64cfaf
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions kubejs/server_scripts/base/featrues/cooking.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,25 @@ if (feature("Better pancake recipe")) {
"create:honey",
"milk",
]);

removeRecipe({ id: "supplementaries:pancake" });

["200x create:chocolate", "200x create:honey", "200x milk"].forEach(
(pancake_batter) => {
addAssembly("4x supplementaries:pancake", "create:dough", [
addFilling("stick", "stick", pancake_batter),
addDeploying("stick", "stick", "egg"),
addDeploying("stick", "stick", "sugar"),
addPressing("stick", "stick"),
]);
}
);
}

if (feature("Pizza recipes")) {
addPressing("ptdye:pizza_base", "create:dough");
addAssembly("ptdye:pizza", "ptdye:pizza_base", [
addFilling("ptdye:pizza", "ptdye:pizza_base", "ptdye:tomato_sauce"),
addDeploying("ptdye:pizza", "ptdye:pizza_base", "kubejs:fermented_blob"),
]);
}

0 comments on commit a64cfaf

Please sign in to comment.