KubeJS Delight Mod (1.20.1, 1.19.2) allows you to add custom knives, pies and feasts in KubeJS scripts. It also supports cutting board and cooking pot recipes.

Features:

Example:

Startup Scripts:

StartupEvents.registry("block", event => {
event.create('example_pie', 'farmersdelight:pie')
.sliceItem('kubejs:example_pie_slice')
.displayName('Example Pie')
event.create('example_feast', 'farmersdelight:feast')
.servingsAmount(3)
.servingItems(['kubejs:example_feast_serving', 'kubejs:example_feast_serving_2'])
.displayName('Example Feast')
})

StartupEvents.registry("item", event => {
event.create('example_knife', 'farmersdelight:knife')
.displayName('Example Knife')
.tier('diamond')
})

Server Scripts:

ServerEvents.recipes(event => {
event.recipes.farmersdelight.cutting(
"minecraft:cobblestone",
"#forge:tools/pickaxes", // tool
[ // results
"minecraft:iron_ore",
Item.of("minecraft:diamond")
.withChance(0.1)
],
// "" // sound
);

event.recipes.farmersdelight.cooking(
["minecraft:cobblestone"],
"minecraft:iron_ore", // output
30, // exp
10, // cookTime
"minecraft:bowl", // container
);
})

Requires:

Minecraft Forge

Farmer’s Delight Mod

KubeJS Library

How to install:

How To Download & Install Mods with Minecraft Forge

How To Download & Install Fabric Mods

Don’t miss out today’s latest Minecraft Mods

KubeJS Delight Mod (1.20.1, 1.19.2) Download Links

For Minecraft 1.19.2

Forge version: Download from Server 1Download from Server 2

For Minecraft 1.20.1, 1.20

Forge version: Download from Server 1Download from Server 2

Click to rate this post!
[Total: 0 Average: 0]