JDT KubeJS
This is a mod that makes Just Dire Things recipes compatible with KubeJS.
It also fixes an issue where JDT recipe IDs are not displayed in JEI.
Example
ServerEvents.recipes(event => {
event.recipes.justdirethings.goospread(
'kubejs:goospread/test', // Recipe ID
'minecraft:chest', // Input block
'minecraft:shulker_box', // Output block
1, // Goo tier
2400 // Crafting duration
)
event.recipes.justdirethings.goospread_tag(
'kubejs:goospread/tag_test', // Recipe ID
BlockTagIngredient('minecraft:planks'), // Input block tag
'minecraft:shroomlight', // Output block
4, // Goo tier
2400 // Crafting duration
)
event.recipes.justdirethings.fluiddrop(
'kubejs:fluiddrop/test', // Recipe ID
'minecraft:blaze_powder', // Catalyst item
'justdirethings:polymorphic_fluid_block', // Input fluid
'minecraft:lava' // Output fluid
)
})