{"id":91228,"date":"2026-06-05T08:03:12","date_gmt":"2026-06-05T05:03:12","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/"},"modified":"2026-06-05T08:03:12","modified_gmt":"2026-06-05T05:03:12","slug":"kubejs-create","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/","title":{"rendered":"KubeJS Create"},"content":{"rendered":"<p>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.<\/p>\n<p>Supported recipe types:<\/p>\n<p>&#8211; `createCrushing`<br \/>\n&#8211; `createCutting`<br \/>\n&#8211; `createMilling`<br \/>\n&#8211; `createBasin`<br \/>\n&#8211; `createMixing` (supports **.heated()** and **.superheated()**)<br \/>\n&#8211; `createCompacting` (supports **.heated()** and **.superheated()**)<br \/>\n&#8211; `createPressing`<br \/>\n&#8211; `createSandpaperPolishing`<br \/>\n&#8211; `createSplashing` (Bulk Washing)<br \/>\n&#8211; `createDeploying`<br \/>\n&#8211; `createFilling`<br \/>\n&#8211; `createEmptying`<\/p>\n<p>> Note: Bulk Smoking = vanilla smoking and Bulk Blasting = vanilla blasting recipe types.<\/p>\n<p>`event.recipes.createCrushing(output[], input[])`<br \/>\nOutput doesn&#8217;t have to be an array. It can be either items or fluids<br \/>\nInput doesn&#8217;t have to be an array. It can be either ingredients or `Fluid.of(&#8216;minecraft:water&#8217;, 1000)` or `{fluidTag: &#8216;some:fluid_tag&#8217;, amount: 1000}`<\/p>\n<p>### `createMechanicalCrafting`<\/p>\n<p>`event.recipes.createMechanicalCrafting(output, pattern[], {patternKey: input})`<\/p>\n<p>This recipe type is the same as regular crafting table shaped recipe<\/p>\n<p>&#8220;`javascript<br \/>\nevent.recipes.createSequencedAssembly(output[], input, sequence[])<br \/>\n\/\/ output[] are your output items<br \/>\n\/\/ input is your input item<br \/>\n\/\/ sequence[] is an array of sequences. These sequences are &#8220;regular&#8221; recipes that are supported.<br \/>\n&#8220;`<\/p>\n<p>## Examples<\/p>\n<p>&#8220;`javascript<br \/>\nevent.recipes.createCrushing([<br \/>\n  &#8216;2x minecraft:cobblestone&#8217;,<br \/>\n  &#8216;minecraft:redstone&#8217;,<br \/>\n  Item.of(&#8216;minecraft:redstone&#8217;).withChance(0.5)<br \/>\n], &#8216;minecraft:redstone_ore&#8217;)<br \/>\n&#8220;`<\/p>\n<p>&#8220;`javascript<br \/>\nevent.recipes.createMixing(&#8216;create:chromatic_compound&#8217;, [<br \/>\n  &#8216;#forge:dusts\/glowstone&#8217;,<br \/>\n  &#8216;#forge:dusts\/glowstone&#8217;,<br \/>\n  &#8216;#forge:dusts\/glowstone&#8217;,<br \/>\n  &#8216;create:powdered_obsidian&#8217;,<br \/>\n  &#8216;create:powdered_obsidian&#8217;,<br \/>\n  &#8216;create:powdered_obsidian&#8217;,<br \/>\n  &#8216;create:polished_rose_quartz&#8217;<br \/>\n]).superheated()<br \/>\n&#8220;`<\/p>\n<p>&#8220;`javascript<br \/>\nevent.recipes.createFilling(&#8216;create:blaze_cake&#8217;, [<br \/>\n  &#8216;create:blaze_cake_base&#8217;,<br \/>\n  Fluid.of(&#8216;minecraft:lava&#8217;, 250)<br \/>\n])<br \/>\n&#8220;`<\/p>\n<p>&#8220;`javascript<br \/>\nevent.recipes.createEmptying([<br \/>\n  &#8216;minecraft:glass_bottle&#8217;,<br \/>\n  Fluid.of(&#8216;create:honey&#8217;, 250)<br \/>\n], &#8216;minecraft:honey_bottle&#8217;)<br \/>\n&#8220;`<\/p>\n<p>&#8220;`javascript<br \/>\nevent.recipes.createMechanicalCrafting(&#8216;minecraft:piston&#8217;, [<br \/>\n  &#8216;CCCCC&#8217;,<br \/>\n  &#8216;CPIPC&#8217;,<br \/>\n  &#8216;CPRPC&#8217;<br \/>\n], {<br \/>\n  C: &#8216;#forge:cobblestone&#8217;,<br \/>\n  P: &#8216;#minecraft:planks&#8217;,<br \/>\n  R: &#8216;#forge:dusts\/redstone&#8217;,<br \/>\n  I: &#8216;#forge:ingots\/iron&#8217;<br \/>\n})<br \/>\n&#8220;`<\/p>\n<p>&#8220;`javascript<br \/>\nevent.recipes.createSequencedAssembly([ \/\/ start the recipe<br \/>\n Item.of(&#8216;6x create:large_cogwheel&#8217;).withChance(32.0), \/\/ have this item be an output with a certain chance<br \/>\n Item.of(&#8216;create:brass_ingot&#8217;).withChance(2.0), \/\/ have this item be an output with a certain chance<br \/>\n &#8216;minecraft:andesite&#8217;, \/\/ have this item be a guaranteed output<br \/>\n &#8216;create:cogwheel&#8217;, \/\/ have this item be a guaranteed output<br \/>\n &#8216;minecraft:stick&#8217;, \/\/ have this item be a guaranteed output<br \/>\n &#8216;minecraft:iron_nugget&#8217; \/\/ have this item be a guaranteed output<br \/>\n], &#8216;create:brass_ingot&#8217;, [ \/\/ &#8216;create:brass_ingot&#8217; is the input.<br \/>\n\/\/ the transitional item set by &#8220;transitionalItem(&#8216;create:incomplete_large_cogwheel&#8217;)&#8221; is the item that will be used during the recipe as the item that the input is using to transition to the output.<br \/>\n event.recipes.createDeploying(&#8216;create:incomplete_large_cogwheel&#8217;, [&#8216;create:incomplete_large_cogwheel&#8217;, &#8216;#minecraft:planks&#8217;]), \/\/ like a normal recipe function, is used as a sequence step in this array. Input and output have the transitional item<br \/>\n event.recipes.createDeploying(&#8216;create:incomplete_large_cogwheel&#8217;, [&#8216;create:incomplete_large_cogwheel&#8217;, &#8216;#minecraft:wooden_buttons&#8217;]), \/\/ like a normal recipe function, is used as a sequence step in this array. Input and output have the transitional item<br \/>\n event.recipes.createCutting(&#8216;create:incomplete_large_cogwheel&#8217;, &#8216;create:incomplete_large_cogwheel&#8217;).processingTime(50) \/\/ like a normal recipe function, is used as a sequence step in this array. Input and output have the transitional item<br \/>\n]).transitionalItem(&#8216;create:incomplete_large_cogwheel&#8217;).loops(6) \/\/ set the transitional item and the loops (amount of repetitions)<br \/>\n&#8220;`<\/p>\n<p>If you want to use your own transitional item in sequenced_assembly recipes, you must register it in startup event:<\/p>\n<p>&#8220;`javascript<br \/>\nonEvent(&#8216;item.registry&#8217;, event => {<br \/>\n  \/\/ Texture for this item goes in kubejs\/assets\/kubejs\/textures\/item\/my_part.png<br \/>\n  event.create(&#8216;my_part&#8217;, &#8216;create:sequenced_assembly&#8217;).displayName(&#8216;My Part&#8217;)<br \/>\n})<br \/>\n&#8220;`<\/p>\n<p>Then you would use &#8230;`transitionalItem(&#8216;kubejs:my_part&#8217;)`&#8230;<\/p>\n<p>> 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):<\/p>\n<p>&#8220;`javascript<br \/>\nlet MysteriousItemConversionCategory = java(&#8216;com.simibubi.create.compat.jei.category.MysteriousItemConversionCategory&#8217;)<br \/>\nlet ConversionRecipe = java(&#8216;com.simibubi.create.compat.jei.ConversionRecipe&#8217;)<\/p>\n<p>MysteriousItemConversionCategory.RECIPES.add(ConversionRecipe.create(&#8216;minecraft:apple&#8217;, &#8216;minecraft:carrot&#8217;))<br \/>\nMysteriousItemConversionCategory.RECIPES.add(ConversionRecipe.create(&#8216;minecraft:golden_apple&#8217;, &#8216;minecraft:golden_carrot&#8217;))<br \/>\n&#8220;`<\/p>\n<p>![](https:\/\/links.latvian.dev\/)<\/p>\n<p>![](https:\/\/links.latvian.dev\/partner)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>KubeJS Create integration<\/p>\n","protected":false},"featured_media":91229,"template":"","meta":{"_minecraft_slug":"kubejs-create","_minecraft_project_id":"T38eAZQC","_minecraft_author":"Lat","_minecraft_license":"LGPL-3.0-only","_minecraft_downloads":1325815,"_minecraft_follows":81,"_minecraft_client_side":"required","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"kubejs-create.zip","_minecraft_size_bytes":575081,"_minecraft_version_count":25,"_minecraft_updated_at":"2026-05-16T21:55:37.356403Z","_minecraft_date_created":"2023-08-21T23:33:40.220478Z","_minecraft_date_modified":"2025-11-12T09:22:04.679133Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/kubejs-create","_minecraft_icon_attachment_id":91229,"_minecraft_imported_at":"2026-06-05T05:03:13+00:00","_minecraft_import_hash":"e04f71144ec9a77c845b275c2bbc7ec0","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,104,873,158,92],"mod_loader":[99,106,160],"minecraft_version":[120,46,47,48,52,53,56,36,62,37],"class_list":["post-91228","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-forge","mod_category-library","mod_category-neoforge","mod_category-utility","mod_loader-fabric","mod_loader-forge","mod_loader-neoforge","minecraft_version-1-16-2","minecraft_version-1-16-3","minecraft_version-1-16-4","minecraft_version-1-16-5","minecraft_version-1-18-1","minecraft_version-1-18-2","minecraft_version-1-19-2","minecraft_version-1-20-1","minecraft_version-1-21","minecraft_version-1-21-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>KubeJS Create - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"KubeJS Create - Minecraft\" \/>\n<meta property=\"og:description\" content=\"KubeJS Create integration\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/kubejs-create\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/kubejs-create\\\/\",\"name\":\"KubeJS Create - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/kubejs-create\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/kubejs-create\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/kubejs-create-icon-a64dad7d028d11258640b48798614759ae1fb2a4_96.webp\",\"datePublished\":\"2026-06-05T05:03:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/kubejs-create\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/kubejs-create\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/kubejs-create\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/kubejs-create-icon-a64dad7d028d11258640b48798614759ae1fb2a4_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/kubejs-create-icon-a64dad7d028d11258640b48798614759ae1fb2a4_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/kubejs-create\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"KubeJS Create\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"KubeJS Create - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/","og_locale":"en_US","og_type":"article","og_title":"KubeJS Create - Minecraft","og_description":"KubeJS Create integration","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/","name":"KubeJS Create - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/kubejs-create-icon-a64dad7d028d11258640b48798614759ae1fb2a4_96.webp","datePublished":"2026-06-05T05:03:12+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/kubejs-create-icon-a64dad7d028d11258640b48798614759ae1fb2a4_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/kubejs-create-icon-a64dad7d028d11258640b48798614759ae1fb2a4_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/kubejs-create\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"KubeJS Create"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/91228","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/91229"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=91228"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=91228"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=91228"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=91228"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}