Modscraper Modscraper Minecraft
KubeJS Create logo

KubeJS Create

Mod

by LatvianModder

KubeJS Create integration

Type

Mod

CurseForge Downloads

49,351,801

CurseForge ID

429371

Modrinth Downloads

1,823,826

Modrinth ID

T38eAZQC

Last Updated

Sep 11, 2026

Description

[Create](https://modrinth.com/mod/create) integration for [KubeJS](https://modrinth.com/mod/kubejs). This mod allows you to add and properly edit recipes of Create mod in KubeJS scripts. All supported recipe types and examples are below. See [Recipes page](https://mods.latvian.dev/books/kubejs/page/recipeeventjs) for more info. Supported recipe types: - `createCrushing` - `createCutting` - `createMilling` - `createBasin` - `createMixing` (supports **.heated()** and **.superheated()**) - `createCompacting` (supports **.heated()** and **.superheated()**) - `createPressing` - `createSandpaperPolishing` - `createSplashing` (Bulk Washing) - `createDeploying` - `createFilling` - `createEmptying` > Note: Bulk Smoking = vanilla smoking and Bulk Blasting = vanilla blasting recipe types. `event.recipes.createCrushing(output[], input[])` Output doesn't have to be an array. It can be either items or fluids Input doesn't have to be an array. It can be either ingredients or `Fluid.of('minecraft:water', 1000)` or `{fluidTag: 'some:fluid_tag', amount: 1000}` ### `createMechanicalCrafting` `event.recipes.createMechanicalCrafting(output, pattern[], {patternKey: input})` This recipe type is the same as regular crafting table shaped recipe ```javascript event.recipes.createSequencedAssembly(output[], input, sequence[]) // output[] are your output items // input is your input item // sequence[] is an array of sequences. These sequences are "regular" recipes that are supported. ``` ## Examples ```javascript event.recipes.createCrushing([ '2x minecraft:cobblestone', 'minecraft:redstone', Item.of('minecraft:redstone').withChance(0.5) ], 'minecraft:redstone_ore') ``` ```javascript event.recipes.createMixing('create:chromatic_compound', [ '#forge:dusts/glowstone', '#forge:dusts/glowstone', '#forge:dusts/glowstone', 'create:powdered_obsidian', 'create:powdered_obsidian', 'create:powdered_obsidian', 'create:polished_rose_quartz' ]).superheated() ``` ```javascript event.recipes.createFilling('create:blaze_cake', [ 'create:blaze_cake_base', Fluid.of('minecraft:lava', 250) ]) ``` ```javascript event.recipes.createEmptying([ 'minecraft:glass_bottle', Fluid.of('create:honey', 250) ], 'minecraft:honey_bottle') ``` ```javascript event.recipes.createMechanicalCrafting('minecraft:piston', [ 'CCCCC', 'CPIPC', 'CPRPC' ], { C: '#forge:cobblestone', P: '#minecraft:planks', R: '#forge:dusts/redstone', I: '#forge:ingots/iron' }) ``` ```javascript event.recipes.createSequencedAssembly([ // start the recipe Item.of('6x create:large_cogwheel').withChance(32.0), // have this item be an output with a certain chance Item.of('create:brass_ingot').withChance(2.0), // have this item be an output with a certain chance 'minecraft:andesite', // have this item be a guaranteed output 'create:cogwheel', // have this item be a guaranteed output 'minecraft:stick', // have this item be a guaranteed output 'minecraft:iron_nugget' // have this item be a guaranteed output ], 'create:brass_ingot', [ // 'create:brass_ingot' is the input. // the transitional item set by "transitionalItem('create:incomplete_large_cogwheel')" is the item that will be used during the recipe as the item that the input is using to transition to the output. event.recipes.createDeploying('create:incomplete_large_cogwheel', ['create:incomplete_large_cogwheel', '#minecraft:planks']), // like a normal recipe function, is used as a sequence step in this array. Input and output have the transitional item event.recipes.createDeploying('create:incomplete_large_cogwheel', ['create:incomplete_large_cogwheel', '#minecraft:wooden_buttons']), // like a normal recipe function, is used as a sequence step in this array. Input and output have the transitional item event.recipes.createCutting('create:incomplete_large_cogwheel', 'create:incomplete_large_cogwheel').processingTime(50) // like a normal recipe function, is used as a sequence step in this array. Input and output have the transitional item ]).transitionalItem('create:incomplete_large_cogwheel').loops(6) // set the transitional item and the loops (amount of repetitions) ``` If you want to use your own transitional item in sequenced_assembly recipes, you must register it in startup event: ```javascript onEvent('item.registry', event => { // Texture for this item goes in kubejs/assets/kubejs/textures/item/my_part.png event.create('my_part', 'create:sequenced_assembly').displayName('My Part') }) ``` Then you would use ...`transitionalItem('kubejs:my_part')`... > Note! Mysterious Conversion recipes are client side only, so the only way to add them currently is using reflection with this code in client scripts (outside any event): ```javascript let MysteriousItemConversionCategory = java('com.simibubi.create.compat.jei.category.MysteriousItemConversionCategory') let ConversionRecipe = java('com.simibubi.create.compat.jei.ConversionRecipe') MysteriousItemConversionCategory.RECIPES.add(ConversionRecipe.create('minecraft:apple', 'minecraft:carrot')) MysteriousItemConversionCategory.RECIPES.add(ConversionRecipe.create('minecraft:golden_apple', 'minecraft:golden_carrot')) ``` [![](https://links.latvian.dev/links.png?mr=kubejscreate)](https://links.latvian.dev/) [![](https://links.latvian.dev/partner.png)](https://links.latvian.dev/partner)

Compatibility

Mod Loaders

Fabric Forge Neoforge

Game Versions

1.16.2 1.16.3 1.16.4 1.16.5 1.18.1 1.18.2 1.19.2 1.20.1 1.21 1.21.1

Recommended Gear

Affiliate

Hardware and extras that pair well with this mod.

As an Amazon Associate I earn from qualifying purchases.

Similar Mods

Included in Modpacks (800)

Show fewer
VampireReborn VampireReborn Unique-Social Build Your City 2 Unique-Social Build Your City 2 Tech Spirit Tech Spirit Fantastic Frontier Fantastic Frontier Realm of Destiny Realm of Destiny QSMP 2024 FANMADE QSMP 2024 FANMADE Star Space Ages Star Space Ages OPSkies 2 OPSkies 2 EMC & FE +++ EMC & FE +++ MultiSkyBlock 2 MultiSkyBlock 2 QSMP 2 Community Edition QSMP 2 Community Edition Project Create 1.20 Project Create 1.20 Create Sky Industrie´s Create Sky Industrie´s Create - Plane and Simple Create - Plane and Simple Path of Truth Path of Truth Compact World Expert Compact World Expert Jaffa Factory 2 Jaffa Factory 2 Ascension of Ages Ascension of Ages Create: Above and Beyond NEW Create: Above and Beyond NEW Smug Anime Girls Smug Anime Girls Create: Above and Beyond, And Then Some! Create: Above and Beyond, And Then Some! FreshCraft Fantasy DLC FreshCraft Fantasy DLC Train Yard Train Yard FabrikaCraft S3 FabrikaCraft S3 Community Community TFC Evolved TFC Evolved Factory Of Singularity:Community Edition Factory Of Singularity:Community Edition High-Altitude Alchemy High-Altitude Alchemy Create Conquest Arcane Create Conquest Arcane Mystical Block 2 Mystical Block 2 Gregnautics Gregnautics Create: Applied Energevation Create: Applied Energevation MC HardcoreZ MC HardcoreZ Create: Beyond Earth Create: Beyond Earth Kingdom of Elchea Kingdom of Elchea Random Item Automation Random Item Automation MekaMiners Brasil MekaMiners Brasil Easy Create Easy Create Luminary Cove Luminary Cove Multiversal Archaeology Multiversal Archaeology Create The Ultimate warfare Create The Ultimate warfare Finality Industries - Omnia Finality Industries - Omnia Unlimited Sky Resources Unlimited Sky Resources Create: Spectral Cuisine Create: Spectral Cuisine The Warborn Realms SMP The Warborn Realms SMP Penumbralcraft Penumbralcraft Skytisfactory Skytisfactory Create: Ultimation Create: Ultimation Compact Sky: Easy Compact Sky: Easy Minenufactory Minenufactory Explore Everything Explore Everything Tensura All The Slime 1 Tensura All The Slime 1 Beyond Elysium Beyond Elysium VORTEX Foundations VORTEX Foundations SkyPlus (w Cobblemon) SkyPlus (w Cobblemon) Jujutsucraft Arai Jujutsucraft Arai Monumental Experience - In space Monumental Experience - In space ForgottenWinter_legacy ForgottenWinter_legacy Picky Picky AdvoTech JJThunder AdvoTech JJThunder MageTech [FORGE] MageTech [FORGE] nuclear radiation 2 nuclear radiation 2 The Createville Pack The Createville Pack Liminal Industries - Rescripted Liminal Industries - Rescripted Literally All of Create Literally All of Create Stargate: ReLeveled Stargate: ReLeveled Simplicity SMP Simplicity SMP Create Lost and Renaissance Create Lost and Renaissance C&K's Organized Crime C&K's Organized Crime Creatopia Unbound Creatopia Unbound Cobblemon Enhanced (Pokemon) Cobblemon Enhanced (Pokemon) Create Eternal Journey Create Eternal Journey Au Naturel Au Naturel Winter's Fury: A Post-Apocalyptic Adventure Winter's Fury: A Post-Apocalyptic Adventure The Suspect's Journey The Suspect's Journey A Journey's End - RPG A Journey's End - RPG PokeSMP PokeSMP WT Endless Sky Adventures - SkyGrid Edition WT Endless Sky Adventures - SkyGrid Edition Create It Up - A Create Experience Create It Up - A Create Experience TerraFirmaCraft:Leap The Top TerraFirmaCraft:Leap The Top Transportcraft Next Generation Transportcraft Next Generation Colony:Exodus to the stars Colony:Exodus to the stars Community in the Skies Community in the Skies Sulidae TFC Sulidae TFC Liminal Industries - Oil Expansion Liminal Industries - Oil Expansion Sky Technology Sky Technology Project One Project One Create: Industrialized Tech Create: Industrialized Tech Aeon Automata Aeon Automata Xomaps 2 Xomaps 2 Project Arc Light - The Hanging Pavilion Project Arc Light - The Hanging Pavilion FreakLand FreakLand Terra Enhance | How It Should Be Played Terra Enhance | How It Should Be Played W.M.D (Weapons, Monsters, and Dungeons) W.M.D (Weapons, Monsters, and Dungeons) Create Outbound Create Outbound Congregation - expert Gregtech pack Congregation - expert Gregtech pack Create: Mostly Create Create: Mostly Create Sky XP Sky XP Araxer's: Ages - Staged Survival Araxer's: Ages - Staged Survival From Spears to Gears From Spears to Gears

External Resources