What is KubeJS Tinkers Construct Mod?
The KubeJS Tinkers Construct mod lets you edit and create Tinker’s Construct recipes using KubeJS scripts. If you work with recipe mods, this one saves you a ton of time. You can customize casting tables, casting basins, and more without touching JSON files.
Features
Casting Table Recipes
Create custom casting table recipes with fluid input. You can set the cast type, cooling time, and whether the cast gets consumed.
event.recipes.tconstruct.casting_table(outputItem, inputFluidId)
Casting Basin Recipes
Add recipes to the casting basin for larger items. Works the same as the casting table with optional cooling time adjustment (defaults to 180 ticks).
event.recipes.tconstruct.casting_basin(output, inputFluidId)
Cast Methods
Choose how your casts work:
.cast(castIngredient)– use a reusable cast.noCast()– no cast needed.multiUseCast(castType)– cast can be used multiple times.singleUseCast(castType)– cast breaks after one use.consumeCast()– cast gets consumed during crafting.switchSlots()– swap input slots.coolingTime(ticks)– set how long cooling takes
Example Script
Here’s how to use it in kubejs/server_scripts/tinkers_construct.js:
onEvent('recipes', event => {
const { casting_table, casting_basin } = event.recipes.tconstruct;
casting_table('minecraft:carrot', 'minecraft:water').singleUseCast('nugget')
casting_basin('minecraft:coal_block', 'minecraft:lava')
casting_basin('minecraft:emerald', 'minecraft:water').cast('#forge:dusts/emerald')
})
What You Need
Before installing, make sure you have:
- Minecraft Forge for 1.18.2
- Tinkers’ Construct Mod
- KubeJS Library
- Architectury API
How to Install
Not sure how to install mods? We’ve got guides:
KubeJS Tinkers Construct Mod 1.18.2 Download
For Minecraft 1.18.2 (Forge)
This file is part of KubeJS Tinkers Construct Mod 1.18.2. Visit the main page for features, installation guide, screenshots, and more download options.
Browse more Minecraft mods on 1Minecraft.