Skip to content

Commit

Permalink
tweak: add textures for pizza
Browse files Browse the repository at this point in the history
  • Loading branch information
Yarden-zamir committed Feb 7, 2024
1 parent a64cfaf commit b984710
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 1 deletion.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kubejs/assets/ptdye/textures/item/pizza.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kubejs/assets/ptdye/textures/item/pizza_base.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion kubejs/features.json
Original file line number Diff line number Diff line change
Expand Up @@ -300,5 +300,14 @@
"Recycle crossbow": true,
"Remove crossbow recipe": true,
"Replace Quark Crate": true,
"Remove tree fertilizer": true
"Remove tree fertilizer": true,
"Fix wand of the forest duplicating belts": true,
"Remove conductors cap colored recipes in assembly": true,
"Tomato sauce recipes": true,
"Remove shapeless dough recipe": true,
"Better pancake recipe": true,
"Better dough recipes": true,
"Water from kelp": true,
"Water from kelp and seagrass": true,
"Pizza recipes": true
}
13 changes: 13 additions & 0 deletions kubejs/startup_scripts/custom_items/in_progress_items.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
StartupEvents.registry("item", (event) => {
event
.create("ptdye:incomplete_rail", "create:sequenced_assembly")
.unstackable();
event
Expand All @@ -8,3 +9,15 @@ StartupEvents.registry("item", (event) => {
})
.unstackable();
event
.create("ptdye:incomplete_pizza", "create:sequenced_assembly")
.food((food) => {
food.hunger(2).saturation(1);
})
.unstackable();
event
.create("ptdye:pizza_base", "create:sequenced_assembly")
.food((food) => {
food.hunger(1).saturation(1);
})
.unstackable();
});

0 comments on commit b984710

Please sign in to comment.