{"id":162511,"date":"2026-06-09T19:07:09","date_gmt":"2026-06-09T16:07:09","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/"},"modified":"2026-06-09T19:07:09","modified_gmt":"2026-06-09T16:07:09","slug":"universal-cutting-recipe","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/","title":{"rendered":"Universal Cutting Recipe"},"content":{"rendered":"<p>This mod provides universal cutting recipes for all matching items.<\/p>\n<p>This mod is an util separated from another mod named Convenient Storage (Not on Modrinth) by Admsgenter.<br \/>\n# FUNCTION<br \/>\n### Adds universal cutting recipes for items missing appropriate recipes.<\/p>\n<p>For example, items of wood has no recipes for cutting, we added for them.<br \/>\n![Wood Cutting Recipes](https:\/\/cdn.modrinth.com\/data\/cached_images\/c5eed18c675bb23af1d93a591778065e14b33539.png)<br \/>\n### Completes direct recipes for items can be crafted through multiple recipes.<\/p>\n<p>For example, Stone can be cut into Cobblestone, Cobblestone can be cut into Cobblestone Stairs, a cutting recipe from Stone to Cobblestone Stairs will be added if absent.<br \/>\n![Direct Cutting](https:\/\/cdn.modrinth.com\/data\/cached_images\/e530e68d8de8c13f08257138f165794e713f6542.png)<br \/>\n&#8211; Note: Cutting Recipe from Stone to Cobblestone is not present in Minecraft 1.20, it is added by this mod.<br \/>\n# DATAPACK<br \/>\nThe rule for this mod can be modified in datapack or kjs.<\/p>\n<p>## Structure<br \/>\nThe structure of the datapack should be like:<br \/>\n&#8220;`<br \/>\ndata\/<namespace>\/<br \/>\n\u251c universal_ingredient\/<br \/>\n\u2502  \u2514 <ingredient_file_name>.json<br \/>\n\u2514 universal_recipe\/<br \/>\n    \u2514 <recipe_file_name>.json<br \/>\n&#8220;`<\/p>\n<p>## JSON<br \/>\n### Universal Ingredient<\/p>\n<p>We add cutting recipes for items by matching their ids.<\/p>\n<p>We use &#8216;*&#8217; as wildcard for matching.<\/p>\n<p>For example, &#8220;minecraft:oak_log&#8221;, &#8220;minecraft:birch_log&#8221;, &#8230; matches &#8220;*_log&#8221;.<\/p>\n<p>The structure of the json should be like:<br \/>\n&#8220;`<br \/>\nJSON<br \/>\n\u251c <ingredient_0>: [<rule_0>, <rule_1>, &#8230;]<br \/>\n\u251c <ingredient_1>: [<rule_0>, <rule_1>, &#8230;]<br \/>\n&#8230;<br \/>\n&#8220;`<br \/>\nFor example, part of data\/universal_cutting_recipe\/universal_ingredient\/default.json:<br \/>\n&#8220;`<br \/>\n{<br \/>\n    &#8220;boat&#8221;: [&#8220;*_boat&#8221;],<br \/>\n    &#8220;bricks&#8221;: [&#8220;*_bricks&#8221;],<br \/>\n    &#8220;button&#8221;: [&#8220;*_button&#8221;],<br \/>\n    &#8220;door&#8221;: [&#8220;*_door&#8221;],<br \/>\n    &#8220;fence&#8221;: [&#8220;*_fence&#8221;],<br \/>\n    &#8220;fence_gate&#8221;: [&#8220;*_fence_gate&#8221;],<br \/>\n    &#8220;log&#8221;: [&#8220;*_log&#8221;, &#8220;*_stem&#8221;],<br \/>\n    &#8220;planks&#8221;: [&#8220;*_planks&#8221;],<br \/>\n    &#8220;stripped_log&#8221;: [&#8220;stripped_*_log&#8221;, &#8220;stripped_*_stem&#8221;],<br \/>\n    &#8220;stripped_wood&#8221;: [&#8220;stripped_*_wood&#8221;, &#8220;stripped_*_hyphae&#8221;],<br \/>\n    &#8220;trapdoor&#8221;: [&#8220;*_trapdoor&#8221;],<br \/>\n    &#8220;wood&#8221;: [&#8220;*_wood&#8221;, &#8220;*_hyphae&#8221;]<br \/>\n}<br \/>\n&#8220;`<br \/>\n&#8211; Note: A standalone &#8220;*&#8221; can&#8217;t be a rule.<br \/>\n### Universal Recipe<br \/>\nThe structure of the json should be like:<br \/>\n&#8220;`<br \/>\nJSON<br \/>\n\u251c <input_ingredient_0>: {<br \/>\n\u2502      <output_ingredient_0>: <count_0>,<br \/>\n\u2502      <output_ingredient_1>: <count_1>,<br \/>\n\u2502      &#8230;<br \/>\n\u2502  }<br \/>\n\u251c <input_ingredient_1>: {<br \/>\n\u2502      &#8230;<br \/>\n\u2502  }<br \/>\n&#8230;<br \/>\n&#8220;`<br \/>\nFor example, part of data\/universal_cutting_recipe\/universal_recipe\/default.json:<br \/>\n&#8220;`<br \/>\n{<br \/>\n    &#8220;*&#8221;: {<br \/>\n        &#8220;bricks&#8221;: 1,<br \/>\n        &#8220;button&#8221;: 1,<br \/>\n        &#8220;fence&#8221;: 1,<br \/>\n        &#8220;fence_gate&#8221;: 1,<br \/>\n        &#8220;slab&#8221;: 2,<br \/>\n        &#8220;stairs&#8221;: 1<br \/>\n    },<br \/>\n    &#8220;log&#8221;: {<br \/>\n        &#8220;stripped_log&#8221;: 1<br \/>\n    },<br \/>\n    &#8220;planks&#8221;: {<br \/>\n        &#8220;button&#8221;: 1,<br \/>\n        &#8220;door&#8221;: 1,<br \/>\n        &#8220;fence&#8221;: 1,<br \/>\n        &#8220;fence_gate&#8221;: 1,<br \/>\n        &#8220;minecraft:ladder&#8221;: 2,<br \/>\n        &#8220;minecraft:stick&#8221;: 3,<br \/>\n        &#8220;sign&#8221;: 1,<br \/>\n        &#8220;slab&#8221;: 2,<br \/>\n        &#8220;stairs&#8221;: 1,<br \/>\n        &#8220;trapdoor&#8221;: 1<br \/>\n    },<br \/>\n    &#8220;stripped_log&#8221;: {<br \/>\n        &#8220;boat&#8221;: 1,<br \/>\n        &#8220;minecraft:barrel&#8221;: 1,<br \/>\n        &#8220;minecraft:chest&#8221;: 1,<br \/>\n        &#8220;minecraft:composter&#8221;: 2,<br \/>\n        &#8220;minecraft:crafting_table&#8221;: 1,<br \/>\n        &#8220;planks&#8221;: 4<br \/>\n    },<br \/>\n    &#8220;stripped_wood&#8221;: {<br \/>\n        &#8220;stripped_log&#8221;: 1<br \/>\n    },<br \/>\n    &#8220;wood&#8221;: {<br \/>\n        &#8220;log&#8221;: 1,<br \/>\n        &#8220;stripped_wood&#8221;: 1<br \/>\n    }<br \/>\n}<br \/>\n&#8220;`<br \/>\n&#8211; Note: A standalone &#8220;*&#8221; can be a input_ingredient.<\/p>\n<p>Then recipes will be added if the * of input and output are same.<\/p>\n<p># MISC<br \/>\n### Can I use this mod in modpacks?<br \/>\nYes.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Adds planty of cutting recipes dynamically by universal matching rules.<\/p>\n","protected":false},"featured_media":162512,"template":"","meta":{"_minecraft_slug":"universal-cutting-recipe","_minecraft_project_id":"TDvwpaFT","_minecraft_author":"Admsgenter","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":8,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"universal-cutting-recipe.zip","_minecraft_size_bytes":17730,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-16T13:45:38.699501Z","_minecraft_date_created":"2026-05-03T23:14:50.918345Z","_minecraft_date_modified":"2026-04-24T16:30:24.921354Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/universal-cutting-recipe","_minecraft_icon_attachment_id":162512,"_minecraft_imported_at":"2026-06-09T16:07:09+00:00","_minecraft_import_hash":"09d5d1ab15149fce8036405aefeb78a9","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[104,92],"mod_loader":[106],"minecraft_version":[36],"class_list":["post-162511","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-forge","mod_category-utility","mod_loader-forge","minecraft_version-1-20-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Universal Cutting Recipe - 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\/universal-cutting-recipe\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Universal Cutting Recipe - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Adds planty of cutting recipes dynamically by universal matching rules.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/universal-cutting-recipe\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/universal-cutting-recipe\\\/\",\"name\":\"Universal Cutting Recipe - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/universal-cutting-recipe\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/universal-cutting-recipe\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/universal-cutting-recipe-icon-ed68a70e1c43257d7d96b8acd008ceaac40335f7.png\",\"datePublished\":\"2026-06-09T16:07:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/universal-cutting-recipe\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/universal-cutting-recipe\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/universal-cutting-recipe\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/universal-cutting-recipe-icon-ed68a70e1c43257d7d96b8acd008ceaac40335f7.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/universal-cutting-recipe-icon-ed68a70e1c43257d7d96b8acd008ceaac40335f7.png\",\"width\":400,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/universal-cutting-recipe\\\/#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\":\"Universal Cutting Recipe\"}]},{\"@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":"Universal Cutting Recipe - 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\/universal-cutting-recipe\/","og_locale":"en_US","og_type":"article","og_title":"Universal Cutting Recipe - Minecraft","og_description":"Adds planty of cutting recipes dynamically by universal matching rules.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/","name":"Universal Cutting Recipe - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/universal-cutting-recipe-icon-ed68a70e1c43257d7d96b8acd008ceaac40335f7.png","datePublished":"2026-06-09T16:07:09+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/universal-cutting-recipe-icon-ed68a70e1c43257d7d96b8acd008ceaac40335f7.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/universal-cutting-recipe-icon-ed68a70e1c43257d7d96b8acd008ceaac40335f7.png","width":400,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/universal-cutting-recipe\/#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":"Universal Cutting Recipe"}]},{"@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\/162511","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\/162512"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=162511"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=162511"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=162511"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=162511"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}