Create Depot Crafting
Combine Items on a Create Depot. For the forge port, checkout create-depot-crafting-forge! Docs: https://github.com/gcatkjspkgs/create-depot-crafting/blob/fabric/README.md 0 downloads
•
49 views
- Created by
- Eldog (gcatkjspkgs)
Create depot crafting for KubeJS
A library that allows you to add custom recipes that use the create depot.
Example
onEvent('block.right_click', event => {
global.recipes.create.manual_depot_application(event,
// Output
Item.of('expandeddelight:cheese_sandwich'),
// Inputs
Ingredient.of('minecraft:bread'), // On depot
Ingredient.of('expandeddelight:cheese_slice') // In hand
)
});