KubeJS Tinkers Construct Mod 1.18.2

Add custom Tinker's Construct recipes with KubeJS scripts. Download KubeJS Tinkers Construct for Minecraft 1.18.2 today.

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:

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)

KubeJS-Tinkers-Construct-Mod-Forge-1.18.2.jar

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.

Size: 8.2 KB

Browse more Minecraft mods on 1Minecraft.

Leave a Reply

Your email address will not be published. Required fields are marked *