{"id":100613,"date":"2026-06-05T21:50:12","date_gmt":"2026-06-05T18:50:12","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/mericles-customrecipes\/"},"modified":"2026-06-05T21:50:12","modified_gmt":"2026-06-05T18:50:12","slug":"mericles-customrecipes","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/mericles-customrecipes\/","title":{"rendered":"Mericle&#8217;s CustomRecipes"},"content":{"rendered":"<p># MERICLE&#8217;S CUSTOM RECIPES<\/p>\n<p>## Project Description<\/p>\n<p>CustomRecipes is a lightweight, developer-friendly Minecraft Spigot plugin that enables server administrators to easily add custom crafting recipes to their Minecraft servers using simple JSON configuration files. The plugin bridges the gap between complex recipe management systems and user-friendly configuration, providing a clean and intuitive way to extend Minecraft&#8217;s crafting system.<\/p>\n<p>## Core Purpose<\/p>\n<p>This plugin addresses the common need for Minecraft server administrators to add custom crafting recipes without requiring complex programming knowledge. It provides a simple, JSON-based approach to recipe creation that&#8217;s both human-readable and easy to maintain:<br \/>\n&#8211; **File-driven configuration** &#8211; Recipes defined in individual JSON files<br \/>\n&#8211; **Hot-reload capability** &#8211; Add recipes without server restarts<br \/>\n&#8211; **ZenScript-inspired syntax** &#8211; Familiar format for experienced users<br \/>\n&#8211; **Zero dependencies** &#8211; Standalone plugin with no external requirements<\/p>\n<p>## Key Features<\/p>\n<p>### **JSON-Based Recipe System**<br \/>\n&#8211; Recipes stored in individual `.json` files in the `recipes\/` folder<br \/>\n&#8211; Comprehensive error handling with detailed logging for troubleshooting<br \/>\n&#8211; Automatic example recipe generation on first run<\/p>\n<p>### **Comprehensive Recipe Support**<br \/>\n&#8211; **Shaped Recipes**: Position-dependent crafting patterns (like vanilla tools)<br \/>\n&#8211; **Shapeless Recipes**: Order-independent ingredient combinations (like vanilla dyes)<br \/>\n&#8211; **Item Tag Support**: Uses Minecraft&#8217;s item tags (e.g., `#minecraft:sand`) to accept multiple material variants<\/p>\n<p>### **Advanced Item Customization**<br \/>\n&#8211; **Custom display names**: Full color code support using `&#038;` formatting<br \/>\n&#8211; **Rich lore text**: Multi-line item descriptions with color formatting<br \/>\n&#8211; **Enchantment application**: Automatic enchantment application to crafted items<br \/>\n&#8211; **Flexible output quantities**: Support for recipes producing multiple items<\/p>\n<p>### **Recipe Management**<br \/>\n&#8211; Hot-reload system with `\/customrecipes reload` command<br \/>\n&#8211; Recipe validation with detailed error reporting<br \/>\n&#8211; Automatic registration with Bukkit&#8217;s crafting system<br \/>\n&#8211; Conflict detection and resolution<\/p>\n<p>### **Developer-Friendly Architecture**<br \/>\n&#8211; Modular design with clean separation of concerns<br \/>\n&#8211; Extensible structure for future feature additions<br \/>\n&#8211; Modern Java practices utilizing Java 21 features<\/p>\n<p>### **Commands**<br \/>\n&#8211; `\/customrecipes` &#8211; Show plugin information<br \/>\n&#8211; `\/customrecipes reload` &#8211; Reload all recipes without server restart<\/p>\n<p>## Recipe Format Examples<\/p>\n<p>### Shaped Recipe (position matters)<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;shaped&#8221;,<br \/>\n  &#8220;name&#8221;: &#8220;reinforced_sword&#8221;,<br \/>\n  &#8220;result&#8221;: {<br \/>\n    &#8220;item&#8221;: &#8220;minecraft:diamond_sword&#8221;,<br \/>\n    &#8220;count&#8221;: 1,<br \/>\n    &#8220;display_name&#8221;: &#8220;&#038;bReinforced Sword&#8221;,<br \/>\n    &#8220;lore&#8221;: [&#8220;&#038;7Enhanced with special materials&#8221;],<br \/>\n    &#8220;enchantments&#8221;: {&#8220;sharpness&#8221;: 2, &#8220;unbreaking&#8221;: 1}<br \/>\n  },<br \/>\n  &#8220;pattern&#8221;: [<br \/>\n    [&#8220;minecraft:diamond&#8221;, &#8220;minecraft:diamond&#8221;, &#8220;minecraft:diamond&#8221;],<br \/>\n    [&#8220;minecraft:air&#8221;, &#8220;minecraft:stick&#8221;, &#8220;minecraft:air&#8221;],<br \/>\n    [&#8220;minecraft:air&#8221;, &#8220;minecraft:stick&#8221;, &#8220;minecraft:air&#8221;]<br \/>\n  ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Shapeless Recipe (order doesn&#8217;t matter)<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;shapeless&#8221;,<br \/>\n  &#8220;name&#8221;: &#8220;dirt_diamonds&#8221;,<br \/>\n  &#8220;result&#8221;: {<br \/>\n    &#8220;item&#8221;: &#8220;minecraft:diamond&#8221;,<br \/>\n    &#8220;count&#8221;: 4,<br \/>\n    &#8220;display_name&#8221;: &#8220;&#038;aDirt Diamond&#8221;<br \/>\n  },<br \/>\n  &#8220;ingredients&#8221;: [<br \/>\n    &#8220;minecraft:dirt&#8221;, &#8220;minecraft:dirt&#8221;,<br \/>\n    &#8220;minecraft:dirt&#8221;, &#8220;minecraft:stick&#8221;<br \/>\n  ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>## Server Impact<\/p>\n<p>&#8211; **Performance**: Efficient recipe registration with minimal runtime overhead<br \/>\n&#8211; **Compatibility**: Works with Spigot, Paper, and Bukkit-based servers<br \/>\n&#8211; **Scalability**: Handles numerous custom recipes without performance impact<br \/>\n&#8211; **Data**: Minimal storage footprint with file-based configuration<\/p>\n<p>## Installation<\/p>\n<p>1. Download the plugin JAR file<br \/>\n2. Place in your server&#8217;s `plugins\/` folder<br \/>\n3. Restart the server<br \/>\n4. Add JSON recipe files to `plugins\/CustomRecipes\/recipes\/`<br \/>\n5. Use `\/customrecipes reload` to load new recipes<\/p>\n","protected":false},"excerpt":{"rendered":"<p>CustomRecipes is a lightweight Minecraft Spigot plugin that allows server administrators to add custom crafting recipes using simple JSON files. The plugin supports both shaped and shapeless recipes with hot-reload functionality.<\/p>\n","protected":false},"featured_media":0,"template":"","meta":{"_minecraft_slug":"mericles-customrecipes","_minecraft_project_id":"w75viAs8","_minecraft_author":"Mericle","_minecraft_license":"MIT","_minecraft_downloads":22,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"mericles-customrecipes.zip","_minecraft_size_bytes":20600,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-15T22:26:44.480621Z","_minecraft_date_created":"2025-10-09T04:43:40.014368Z","_minecraft_date_modified":"2025-10-07T12:46:11.985669Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/mericles-customrecipes","_minecraft_icon_attachment_id":0,"_minecraft_imported_at":"2026-06-05T18:50:13+00:00","_minecraft_import_hash":"1395957c3a1a784c8528be856545f7aa","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[127,129],"mod_loader":[132,134],"minecraft_version":[62,37,73,74,38,78,79,80,81,82],"class_list":["post-100613","mod","type-mod","status-publish","hentry","mod_category-paper","mod_category-spigot","mod_loader-paper","mod_loader-spigot","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Mericle&#039;s CustomRecipes - 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\/mericles-customrecipes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mericle&#039;s CustomRecipes - Minecraft\" \/>\n<meta property=\"og:description\" content=\"CustomRecipes is a lightweight Minecraft Spigot plugin that allows server administrators to add custom crafting recipes using simple JSON files. The plugin supports both shaped and shapeless recipes with hot-reload functionality.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/mericles-customrecipes\/\" \/>\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\\\/mericles-customrecipes\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mericles-customrecipes\\\/\",\"name\":\"Mericle's CustomRecipes - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"datePublished\":\"2026-06-05T18:50:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mericles-customrecipes\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mericles-customrecipes\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mericles-customrecipes\\\/#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\":\"Mericle&#8217;s CustomRecipes\"}]},{\"@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":"Mericle's CustomRecipes - 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\/mericles-customrecipes\/","og_locale":"en_US","og_type":"article","og_title":"Mericle's CustomRecipes - Minecraft","og_description":"CustomRecipes is a lightweight Minecraft Spigot plugin that allows server administrators to add custom crafting recipes using simple JSON files. The plugin supports both shaped and shapeless recipes with hot-reload functionality.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/mericles-customrecipes\/","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\/mericles-customrecipes\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/mericles-customrecipes\/","name":"Mericle's CustomRecipes - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"datePublished":"2026-06-05T18:50:12+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/mericles-customrecipes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/mericles-customrecipes\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/mericles-customrecipes\/#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":"Mericle&#8217;s CustomRecipes"}]},{"@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\/100613","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:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=100613"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=100613"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=100613"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=100613"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}