JDT KubeJS

Quick rating

Community listing page, reviews here may not be monitored by the author.

JDT KubeJS

No reviews yet

Adds KubeJS compatibility for Just Dire Things recipes.

Mod Loaders
Minecraft

About

Description

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
    )
})