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
Sky Revolutions Sky Revolutions CRIF - Create an empire of Rats to fight "Ice&Fire" CRIF - Create an empire of Rats to fight "Ice&Fire" Beyond Depth Insanity Beyond Depth Insanity FreshCraft Classic FreshCraft Classic Create Prepare to Dye Create Prepare to Dye Create: Back on Track Create: Back on Track Create Lets Create - Official Server Create Lets Create - Official Server Go Create Go Create Druidic Quest: Expert Druidic Quest: Expert Rubius cobblemon Rubius cobblemon OxMODPACK 8 OxMODPACK 8 Create Block - Everything in the sky Create Block - Everything in the sky Chroma Endless Chroma Endless Create: Factory Builder Create: Factory Builder Sky Farm Sky Farm Crazy Crave 5 Crazy Crave 5 Rising Civilizations Rising Civilizations Create 2 Mekanism Create 2 Mekanism All the Mods 7 Lite - Spark - ATM7L All the Mods 7 Lite - Spark - ATM7L Magitech Fantasia Magitech Fantasia Uncharted Expeditions Uncharted Expeditions Danknum Opus Danknum Opus EMC SubTerra Tech EMC SubTerra Tech Journey to Dawn [RU] Journey to Dawn [RU] Monumental Experience - In the Sky Monumental Experience - In the Sky The Adventure of Valkyriens The Adventure of Valkyriens Magic Valley Magic Valley WT Endless Sky Adventures - Skyblock Edition WT Endless Sky Adventures - Skyblock Edition Jaffa Factory 2 (Replica) Jaffa Factory 2 (Replica) Shadow Awakening Shadow Awakening Multiblock Madness 2 Multiblock Madness 2 Dark Fantasy [FORGE] Dark Fantasy [FORGE] Towns & Kingdoms 2 | A New World Towns & Kingdoms 2 | A New World sky1234 sky1234 Haven: Caveblock - Reborn Haven: Caveblock - Reborn Mechanical Mastery Plus Mechanical Mastery Plus Create Combined Create Combined EMC: Space Age EMC: Space Age Lunaria Expert Lunaria Expert A-Pokémon-Pack: Obsidian Edition A-Pokémon-Pack: Obsidian Edition Cosmic Frontiers Cosmic Frontiers Echoes of Nostalgia - Expert Echoes of Nostalgia - Expert FreshCraft SteamPunk Industry DLC FreshCraft SteamPunk Industry DLC NeepMeat - Trifecta NeepMeat - Trifecta Create Live 7 Create Live 7 Poetica Poetica Cook in Skyland Cook in Skyland Medival, Magic & Tech NeoForge Medival, Magic & Tech NeoForge NwtCraft NwtCraft Brassworks SMP modpack Brassworks SMP modpack MTW Skyblock Reborn MTW Skyblock Reborn horror the last world in ruins horror the last world in ruins Creative Skyblock Creative Skyblock Haven: Veni de Nova Haven: Veni de Nova Cobblemon: Beyond the Pixelverse Cobblemon: Beyond the Pixelverse Create: Cobblemon [Cardboard Edition] Create: Cobblemon [Cardboard Edition] Clockwork Clockwork Mysticlouds - Cuteness and Chaos Mysticlouds - Cuteness and Chaos CRIF 2 - Create an empire of Rats to fight "Ice&Fire" CRIF 2 - Create an empire of Rats to fight "Ice&Fire" The SuperHero Journey The SuperHero Journey Astral Engineering Astral Engineering EMC & FE ++ EMC & FE ++ Black Hole Black Hole Monumental Experience - Creatures Across the World Monumental Experience - Creatures Across the World                                                                                                AMP - Mechanisms, Magic & Masonry AMP - Mechanisms, Magic & Masonry Odyssey 3 Odyssey 3 [CTC]Create: the Creation [CTC]Create: the Creation Volcanic Sandbox | VS Volcanic Sandbox | VS Techno Magic - Trustworthy Techno Magic - Trustworthy SKYMON - Cobblemon SKYMON - Cobblemon Ashes To Ashes Ashes To Ashes Impostor Syndrome Impostor Syndrome Technological Ascent Technological Ascent FTB Builders Paradise 2 FTB Builders Paradise 2 Create the Server Create the Server Grand Architecture Journey Grand Architecture Journey Chunklock Create Chunklock Create GD: Hexing Tales GD: Hexing Tales Create Overlord Aeronautics Update Create Overlord Aeronautics Update AtlanAbyss AtlanAbyss Create: Civilizations - C:C Create: Civilizations - C:C Liminal Industries Acension Liminal Industries Acension Faruk V Faruk V SeriousFirmaCraft (TFC + Create) SeriousFirmaCraft (TFC + Create) Farwater: Create Mysticism Farwater: Create Mysticism Create 2 Mekanism 2: Sky Edition Create 2 Mekanism 2: Sky Edition Steller: The Rise of the Kingdom Steller: The Rise of the Kingdom Apocalypse Begins [Zombie Apocalypse] Apocalypse Begins [Zombie Apocalypse] Xomaps Potato Master Xomaps Potato Master Beyond Crazycraft Beyond Crazycraft Factorio: Nuclear (OxMODPACK) Factorio: Nuclear (OxMODPACK) Elite Tensura Elite Tensura GregTech:New Beginnings GregTech:New Beginnings Rise of Tech 2 Rise of Tech 2 Devouring The World Devouring The World A New Technological Era A New Technological Era Crashed Crashed Create Optimized [FORGE] Create Optimized [FORGE] Create: Clockwork+ [Forge] Create: Clockwork+ [Forge] Feed the Singularity Feed the Singularity

External Resources