Modscraper Modscraper Minecraft
KubeJS Create logo

KubeJS Create

Mod

by LatvianModder

KubeJS Create integration

Type

Mod

CurseForge Downloads

0

CurseForge ID

429371

Modrinth Downloads

1,255,297

Modrinth ID

T38eAZQC

Last Updated

Apr 27, 2026

Description

  1. Create integration for 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 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 array. It can be either items or fluids
Input doesn't have to be 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

- createSequencedAssembly

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:

event.recipes.createCrushing([
  '2x minecraft:cobblestone',
  'minecraft:redstone',
  Item.of('minecraft:redstone').withChance(0.5)
], 'minecraft:redstone_ore')

 

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

 

event.recipes.createFilling('create:blaze_cake', [
  'create:blaze_cake_base',
  Fluid.of('minecraft:lava', 250)
])

 

event.recipes.createEmptying([
  'minecraft:glass_bottle',
  Fluid.of('create:honey', 250)
], 'minecraft:honey_bottle')
 

event.recipes.createMechanicalCrafting('minecraft:piston', [
  'CCCCC',
  'CPIPC',
  'CPRPC'
], {
  C: '#forge:cobblestone',
  P: '#minecraft:planks',
  R: '#forge:dusts/redstone',
  I: '#forge:ingots/iron'
})

 

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:

 

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

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

 

Similar Mods

Included in Modpacks

DeceasedCraft - Urban Zombie Apocalypse DeceasedCraft - Urban Zombie Apocalypse Beyond Depth Beyond Depth Linggango Linggango MakeShift MakeShift Desolate Planet - A Crash Landing Remake Desolate Planet - A Crash Landing Remake Community Create VII Community Create VII Liminal Industries Liminal Industries Valhelsia 6 Valhelsia 6 Bubble Cobble Redux Bubble Cobble Redux Star Technology Star Technology Seaopolis Submerged 2 Seaopolis Submerged 2 Cuboid Outpost (Luxury Edition) Cuboid Outpost (Luxury Edition) Create: Above and Beyond Create: Above and Beyond Create: Astral Create: Astral Beyond Ascension Beyond Ascension Create: Stranded at Sea Create: Stranded at Sea All the Mods 7 - To the Sky - atm7sky All the Mods 7 - To the Sky - atm7sky The Winter Rescue The Winter Rescue Cottage Witch Cottage Witch Tensura Journey of Reincarnation Tensura Journey of Reincarnation All the Mods 6 - To the Sky - ATM6sky - Skyblock All the Mods 6 - To the Sky - ATM6sky - Skyblock Socky's Create Modpack Socky's Create Modpack Beyond Cosmo Beyond Cosmo Raspberry Flavoured Raspberry Flavoured RainbowMon 2 RainbowMon 2 Trusted Modded Trusted Modded Brassburg SMP Modpack Brassburg SMP Modpack Valhelsia: Enhanced Vanilla Valhelsia: Enhanced Vanilla Mayview (with Cobblemon!) Mayview (with Cobblemon!) The Immersive Revolution: Rebirth The Immersive Revolution: Rebirth Valhelsia 3 Valhelsia 3 BTH - Beyond The Horizon BTH - Beyond The Horizon Create: Delight Remake Create: Delight Remake The Legend Of 2900 The Legend Of 2900 A Distant Journey A Distant Journey Grand Architecture Journey Grand Architecture Journey EMC SubTerra Tech EMC SubTerra Tech The Decursio Project - Expert The Decursio Project - Expert Create Chronicles: Bosses and Beyond Create Chronicles: Bosses and Beyond Cottage Witch: Recast Cottage Witch: Recast Create Lets Create - Official Server Create Lets Create - Official Server Create 2 Mekanism: Sky Edition 2 Create 2 Mekanism: Sky Edition 2 All The Mods - Gravitas² All The Mods - Gravitas² Prey: An Expansive RPG Nightmare Modpack Prey: An Expansive RPG Nightmare Modpack Mechanical Mastery Mechanical Mastery Create Live 4 Create Live 4 NeepMeat - Trifecta NeepMeat - Trifecta Create: Mekanized Create: Mekanized EMC: To The Sky EMC: To The Sky EMC & FE ++ EMC & FE ++ Wold's Vaults - Vault Hunters Expansion Wold's Vaults - Vault Hunters Expansion HazardousDaniel's Unlimited 2.0 HazardousDaniel's Unlimited 2.0 Create The Brass Concerto 机械动力 黄铜协奏曲 Create The Brass Concerto 机械动力 黄铜协奏曲 Create: Sky Factory Create: Sky Factory The Adventure of Valkyriens The Adventure of Valkyriens Create: New Horizon Create: New Horizon TerraFirma: Rebirth TerraFirma: Rebirth Lunaria the Creater Lunaria the Creater Apocalypse Begins [Zombie Apocalypse] Apocalypse Begins [Zombie Apocalypse] Create: Cobblemon [Cardboard Edition] Create: Cobblemon [Cardboard Edition] Forever Factory Forever Factory Ultimate Progression: Sky Ultimate Progression: Sky Volcanic Sandbox | VS Volcanic Sandbox | VS Cosmic Frontiers Cosmic Frontiers Haven: Caveblock - Reborn Haven: Caveblock - Reborn RandBlock RandBlock Monumental Experience Monumental Experience Mystical Block 2 Mystical Block 2 Project Sacrifice Project Sacrifice Enigmatica 6 - E6 - 1.16.5 Enigmatica 6 - E6 - 1.16.5 Liminal Industries Acension Liminal Industries Acension Another Quality Modpack 2 - AQM2 Another Quality Modpack 2 - AQM2 FTB Skies FTB Skies TerraFirmaAdventure TerraFirmaAdventure Chunklock Create Chunklock Create SKYMON - Cobblemon SKYMON - Cobblemon Monumental Experience - In the Sky Monumental Experience - In the Sky Create: Back on Track Create: Back on Track Cozy Create - Create Focused Adventure Cozy Create - Create Focused Adventure Valhelsia 5 Valhelsia 5 FreshCraft Classic FreshCraft Classic Jaffa Factory 2 (Replica) Jaffa Factory 2 (Replica) QSMP 2 Community Edition QSMP 2 Community Edition Creative Drawers Producer Creative Drawers Producer Encrypted_ Encrypted_ TerraFirmaCraft Reloaded TerraFirmaCraft Reloaded Auto-TerraFirmaCraft (TFC + Create) Auto-TerraFirmaCraft (TFC + Create) All the Mods 7 Lite - Spark - ATM7L All the Mods 7 Lite - Spark - ATM7L Create: Civilizations - C:C Create: Civilizations - C:C Dimensional Ascension Dimensional Ascension Ice and Fire Magic Ice and Fire Magic Mechanical Mastery Plus Mechanical Mastery Plus Modded Together Modded Together FreshCraft SteamPunk Industry DLC FreshCraft SteamPunk Industry DLC Create 2 Mekanism Create 2 Mekanism Cave Factory Cave Factory Train Yard Train Yard Architecture & Automatum Architecture & Automatum Uiopik's Skyblock Uiopik's Skyblock Magic Valley Magic Valley Enigmatica 6: Expert - E6E Enigmatica 6: Expert - E6E EMC & FE +++ EMC & FE +++ Clockwork Clockwork AtlanAbyss AtlanAbyss Technological Ascent Technological Ascent Jaffa Factory 2 Jaffa Factory 2 Create: Clockwork+ [Forge] Create: Clockwork+ [Forge] Ultimate Progression Ultimate Progression Create: Above and Beyond NEW Create: Above and Beyond NEW High-Altitude Alchemy High-Altitude Alchemy Liminal Industries - Oil Expansion Liminal Industries - Oil Expansion Beyond Depth Insanity Beyond Depth Insanity All of Fabric 6 - AOF6 All of Fabric 6 - AOF6 Fiefdom - Medieval Fantasy RPG Fiefdom - Medieval Fantasy RPG All the Mods - Gravitas - ATMG All the Mods - Gravitas - ATMG Druidic Quest: Expert Druidic Quest: Expert All the Mods - Slice of Pi2 - ATM SLOP2 - ATM6 Lite All the Mods - Slice of Pi2 - ATM SLOP2 - ATM6 Lite Chroma Technology 2 Chroma Technology 2 Congregation - expert Gregtech pack Congregation - expert Gregtech pack RePalmon RePalmon Path of Truth Path of Truth Realm of Destiny Realm of Destiny Cook in Skyland Cook in Skyland GregTech:New Beginnings GregTech:New Beginnings MC DripCraft MC DripCraft Rebio SMP Rebio SMP MachineHole MachineHole Brassworks SMP modpack Brassworks SMP modpack BETTER FANTASY - Overture BETTER FANTASY - Overture Techno Magic - Trustworthy Techno Magic - Trustworthy Jujutsucraft Arai Jujutsucraft Arai Black Hole Black Hole Create: Industrialized Tech Create: Industrialized Tech FreshCraft Fantasy DLC FreshCraft Fantasy DLC Crashed Crashed TFC Evolved TFC Evolved horror the last world in ruins horror the last world in ruins Ascension of Ages Ascension of Ages All of Fabric 5 - AOF5 All of Fabric 5 - AOF5 Create: Factory Builder Create: Factory Builder sky1234 sky1234 Haven: CaveBlock Haven: CaveBlock Reimagined Reimagined Steller: The Rise of the Kingdom Steller: The Rise of the Kingdom Create Sky Industrie´s Create Sky Industrie´s Create It Up - A Create Experience Create It Up - A Create Experience Rise of Tech 2 Rise of Tech 2 Create the Server Create the Server Grand Odyssey Grand Odyssey Impostor Syndrome Impostor Syndrome Skies of Progression Skies of Progression Artemis: Project Artemis: Project Mysticlouds - Cuteness and Chaos Mysticlouds - Cuteness and Chaos Beyond Elysium Beyond Elysium Sky Revolutions Sky Revolutions Compact World Expert Compact World Expert Create The Ultimate warfare Create The Ultimate warfare Cobblemon Enhanced (Pokemon) Cobblemon Enhanced (Pokemon) Factorio: Nuclear (OxMODPACK) Factorio: Nuclear (OxMODPACK) Explore Everything Explore Everything Haven: Veni de Nova Haven: Veni de Nova Medival, Magic & Tech NeoForge Medival, Magic & Tech NeoForge Transportcraft Next Generation Transportcraft Next Generation Farwater: Create Basics Farwater: Create Basics The Iron Frontier The Iron Frontier CreateAbility CreateAbility NVPack NVPack

External Resources