{"id":59972,"date":"2026-06-03T14:39:02","date_gmt":"2026-06-03T11:39:02","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/"},"modified":"2026-06-03T14:39:02","modified_gmt":"2026-06-03T11:39:02","slug":"durabilitydamagerecipe","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/","title":{"rendered":"Durability Damage Recipe"},"content":{"rendered":"<p>![Durability Damage Recipe](https:\/\/cdn.modrinth.com\/data\/cached_images\/146ac16309437c944f8b3e2412d0ba42c56d95ea.png)<\/p>\n<p>## Description<br \/>\nThis mod adds 2 new recipe types that damage damageable input items instead of using them up, ready to use in your mod or data pack!<\/p>\n<p>An example usage would be a recipe to craft gravel with a shovel to get flint, returning the shovel with some durability loss.<\/p>\n<p>Let your imagination run wild!<\/p>\n<p>### Features:<br \/>\n&#8211; New recipe types: *durabilitydamagerecipe:crafting_damage_shapeless* and *durabilitydamagerecipe:crafting_damage_shaped*<br \/>\n&#8211; These recipe types are similar to the *minecraft:crafting_shapeless* and *minecraft:crafting_shaped* recipe types, but accept an additional parameter: **damage**<br \/>\n&#8211; **Damage** defaults to 1 and controls the amount of damage applied to damageable items used in these crafting recipes<br \/>\n&#8211; If a recipe&#8217;s **damage** is greater than the remaining durability of any of the damageable input items, crafting is not possible<br \/>\n&#8211; Crafter block will eject damageable items after performing the craft<br \/>\n&#8211; Configurable display of &#8220;not enough durability&#8221; notifications when crafting or using Crafter block<br \/>\n&#8211; In-game documentation is available via Treatise if installed<br \/>\n&#8211; In-game configuration is available via Mod Menu if installed<\/p>\n<p>The durability damage taken by an item is currently not affected by the item&#8217;s enchantments, like Unbreaking.<\/p>\n<p>### Using the recipes:<br \/>\nClick here to learn how to create a data pack if you don&#8217;t know how.<\/p>\n<p>Recipe `.json` files should be added to the `data\/<namespace>\/recipe` folder.<\/p>\n<p>Example 1.21.4\/5 `custom_shapeless_recipe.json`:<br \/>\n&#8220;`<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;durabilitydamagerecipe:crafting_damage_shapeless&#8221;,<br \/>\n  &#8220;category&#8221;: &#8220;misc&#8221;,<br \/>\n  &#8220;group&#8221;: &#8220;flint&#8221;,<br \/>\n  &#8220;ingredients&#8221;: [<br \/>\n    &#8220;minecraft:gravel&#8221;,<br \/>\n    &#8220;#minecraft:shovels&#8221;<br \/>\n  ],<br \/>\n  &#8220;damage&#8221;: 1,<br \/>\n  &#8220;result&#8221;: {<br \/>\n    &#8220;count&#8221;: 1,<br \/>\n    &#8220;id&#8221;: &#8220;minecraft:flint&#8221;<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>Example 1.21.4\/5 `custom_shaped_recipe.json`:<br \/>\n&#8220;`<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;durabilitydamagerecipe:crafting_damage_shaped&#8221;,<br \/>\n  &#8220;category&#8221;: &#8220;building&#8221;,<br \/>\n  &#8220;group&#8221;: &#8220;cobblestone&#8221;,<br \/>\n  &#8220;key&#8221;: {<br \/>\n    &#8220;S&#8221;: &#8220;minecraft:stone&#8221;,<br \/>\n    &#8220;P&#8221;: &#8220;#minecraft:pickaxes&#8221;<br \/>\n  },<br \/>\n  &#8220;pattern&#8221;: [<br \/>\n    &#8220;SSS&#8221;,<br \/>\n    &#8220;SPS&#8221;,<br \/>\n    &#8220;SSS&#8221;<br \/>\n  ],<br \/>\n  &#8220;damage&#8221;: 8,<br \/>\n  &#8220;result&#8221;: {<br \/>\n    &#8220;count&#8221;: 8,<br \/>\n    &#8220;id&#8221;: &#8220;minecraft:cobblestone&#8221;<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<br \/>\nExample 1.21.1 `custom_shapeless_recipe.json`:<br \/>\n&#8220;`<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;durabilitydamagerecipe:crafting_damage_shapeless&#8221;,<br \/>\n  &#8220;category&#8221;: &#8220;misc&#8221;,<br \/>\n  &#8220;group&#8221;: &#8220;flint&#8221;,<br \/>\n  &#8220;ingredients&#8221;: [<br \/>\n    {<br \/>\n      &#8220;item&#8221;: &#8220;minecraft:gravel&#8221;<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;tag&#8221;: &#8220;minecraft:shovels&#8221;<br \/>\n    }<br \/>\n  ],<br \/>\n  &#8220;damage&#8221;: 1,<br \/>\n  &#8220;result&#8221;: {<br \/>\n    &#8220;count&#8221;: 1,<br \/>\n    &#8220;id&#8221;: &#8220;minecraft:flint&#8221;<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>Example 1.21.1 `custom_shaped_recipe.json`:<br \/>\n&#8220;`<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;durabilitydamagerecipe:crafting_damage_shaped&#8221;,<br \/>\n  &#8220;category&#8221;: &#8220;building&#8221;,<br \/>\n  &#8220;group&#8221;: &#8220;cobblestone&#8221;,<br \/>\n  &#8220;key&#8221;: {<br \/>\n    &#8220;P&#8221;: {<br \/>\n      &#8220;tag&#8221;: &#8220;minecraft:pickaxes&#8221;<br \/>\n    },<br \/>\n    &#8220;S&#8221;: {<br \/>\n      &#8220;item&#8221;: &#8220;minecraft:stone&#8221;<br \/>\n    }<br \/>\n  },<br \/>\n  &#8220;pattern&#8221;: [<br \/>\n    &#8220;SSS&#8221;,<br \/>\n    &#8220;SPS&#8221;,<br \/>\n    &#8220;SSS&#8221;<br \/>\n  ],<br \/>\n  &#8220;damage&#8221;: 8,<br \/>\n  &#8220;result&#8221;: {<br \/>\n    &#8220;count&#8221;: 8,<br \/>\n    &#8220;id&#8221;: &#8220;minecraft:cobblestone&#8221;<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Config:<br \/>\nCrafting grid &#8220;not enough durability&#8221; options: &#8220;OFF&#8221;, &#8220;ON&#8221;, &#8220;LORE_FRIENDLY&#8221;<\/p>\n<p>Crafter &#8220;not enough durability&#8221; options: &#8220;OFF&#8221;, &#8220;ON&#8221;, &#8220;LORE_FRIENDLY&#8221;<\/p>\n<p>Example `.minecraft\/config\/durabilitydamagerecipe.json`:<\/p>\n<p>&#8220;`<br \/>\n{<br \/>\n  &#8220;craftingNotificationOption&#8221;: &#8220;ON&#8221;,<br \/>\n  &#8220;crafterNotificationOption&#8221;: &#8220;ON&#8221;<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>## Support<br \/>\nIf you have a bug report, feature request, or any other type of issue, please post on our GitHub issues page.  This is an issues page for all of our mods, so be sure to include the mod&#8217;s name and version in your post.  We appreciate all feedback!<\/p>\n<p>If you&#8217;d like to support development, you can leave a tip at our BuyMeACoffee.  Only if it&#8217;s within your means- otherwise, using, sharing, and enjoying the mod is support enough.  Thank you!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A mod adding 2 new crafting recipe types that damage damageable input items instead of consuming them during crafting.  These recipe types are ready to use in your mod or data pack!<\/p>\n","protected":false},"featured_media":59973,"template":"","meta":{"_minecraft_slug":"durabilitydamagerecipe","_minecraft_project_id":"VPoxz2fA","_minecraft_author":"its_Paz","_minecraft_license":"MIT","_minecraft_downloads":714,"_minecraft_follows":5,"_minecraft_client_side":"required","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"durabilitydamagerecipe.zip","_minecraft_size_bytes":529161,"_minecraft_version_count":8,"_minecraft_updated_at":"2026-05-15T23:26:05.022749Z","_minecraft_date_created":"2025-01-28T21:58:54.965757Z","_minecraft_date_modified":"2025-08-05T21:31:17.605643Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/durabilitydamagerecipe","_minecraft_icon_attachment_id":59973,"_minecraft_imported_at":"2026-06-03T11:39:03+00:00","_minecraft_import_hash":"6c824a78fda577fa287cfe642e802953","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[88,97,89,873],"mod_loader":[99],"minecraft_version":[37,38,78,80,81],"class_list":["post-59972","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-equipment","mod_category-fabric","mod_category-game-mechanics","mod_category-library","mod_loader-fabric","minecraft_version-1-21-1","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-7","minecraft_version-1-21-8"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Durability Damage 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\/durabilitydamagerecipe\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Durability Damage Recipe - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A mod adding 2 new crafting recipe types that damage damageable input items instead of consuming them during crafting. These recipe types are ready to use in your mod or data pack!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/\" \/>\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\\\/durabilitydamagerecipe\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/durabilitydamagerecipe\\\/\",\"name\":\"Durability Damage Recipe - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/durabilitydamagerecipe\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/durabilitydamagerecipe\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/durabilitydamagerecipe-icon-a4972bee5b6e054576e39eedc688099e755b8d27_96.webp\",\"datePublished\":\"2026-06-03T11:39:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/durabilitydamagerecipe\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/durabilitydamagerecipe\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/durabilitydamagerecipe\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/durabilitydamagerecipe-icon-a4972bee5b6e054576e39eedc688099e755b8d27_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/durabilitydamagerecipe-icon-a4972bee5b6e054576e39eedc688099e755b8d27_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/durabilitydamagerecipe\\\/#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\":\"Durability Damage 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":"Durability Damage 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\/durabilitydamagerecipe\/","og_locale":"en_US","og_type":"article","og_title":"Durability Damage Recipe - Minecraft","og_description":"A mod adding 2 new crafting recipe types that damage damageable input items instead of consuming them during crafting. These recipe types are ready to use in your mod or data pack!","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/","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\/durabilitydamagerecipe\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/","name":"Durability Damage Recipe - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/durabilitydamagerecipe-icon-a4972bee5b6e054576e39eedc688099e755b8d27_96.webp","datePublished":"2026-06-03T11:39:02+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/durabilitydamagerecipe-icon-a4972bee5b6e054576e39eedc688099e755b8d27_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/durabilitydamagerecipe-icon-a4972bee5b6e054576e39eedc688099e755b8d27_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/durabilitydamagerecipe\/#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":"Durability Damage 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\/59972","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\/59973"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=59972"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=59972"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=59972"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=59972"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}