{"id":11627,"date":"2026-05-31T19:39:51","date_gmt":"2026-05-31T16:39:51","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/"},"modified":"2026-05-31T19:39:51","modified_gmt":"2026-05-31T16:39:51","slug":"alloy-smelter","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/","title":{"rendered":"Alloy Smelter"},"content":{"rendered":"<p>## Alloy Smelter<br \/>\nThis mod adds 3 levels of multi-block structure for smelting ore, made of Bricks, made of Polished Blackstone, made of End Stone Bricks. All recipes from lower level forges work in higher level forges. In its basic configuration, it serves as a simple way to increase the speed of smelting ores, but you can add recipes and change block for forge as you see fit. These features are primarily intended for mod and modpack authors.<\/p>\n<p>![Example](https:\/\/cdn.modrinth.com\/data\/cached_images\/bd0bc5b8e1b7c00fa61aa2bbfe6227b62e3503a1.png)<\/p>\n<p>## IMPORTANT<\/p>\n<p>If you have an old version of the mod and you updated to the new version, where there are 5 slots in the forge, if you placed forge block in your world, the world will not start. Break all the forge blocks in your world, then update the mod.<\/p>\n<p>There are only two smelting recipes for each vanilla ore for each forge level. When smelting one item, it can be placed in any slot in the forge. If a recipe contains 2+ items, the order in which they are placed in the slots is important.<\/p>\n<p>## Features<\/p>\n<p>### Forge automation<\/p>\n<p>You can use both hoppers and blocks from other mods (ae2, etc.) to automate the forge. For the pattern provider (ae2): on any side except the top and bottom. For hoppers: the output slot is located inside the forge, and the input slot is on top. The hopper loads items into the input slots like a chest; the hopper does not have access to the fuel slot.<\/p>\n<p>### Change blocks for each level of the forge.<\/p>\n<p>To change the blocks required for the forge, you need to add the required tag to the block. You can do this using datapack or kubejs.<\/p>\n<p>Each forge level has its own BlockTag:<\/p>\n<p>*   Forge Tier 1: `alloy_smelter:alloy_smelter_blocks_tier1`<br \/>\n*   Forge Tier 2: `alloy_smelter:alloy_smelter_blocks_tier2`<br \/>\n*   Forge Tier 3: `alloy_smelter:alloy_smelter_blocks_tier3`<\/p>\n<p>### Add custom fuel<\/p>\n<p>If you want to add fuel for the smelter, just add this tag &#8220;alloy_smelter:alloy_smelter_fuel&#8221; to any other fuel.<\/p>\n<p>### Add and edit recipes for the forge<br \/>\nTo create a recipe you can use datapacks or kubejs. Having created a json file with your recipe.<\/p>\n<details>\n<summary>Example of json recipe<\/summary>\n<p>1.21.4<br \/>\n&#8220;`<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;alloy_smelter:smelting&#8221;,<br \/>\n  &#8220;ingredients&#8221;: [<br \/>\n    {<br \/>\n      &#8220;ingredient&#8221;: &#8220;minecraft:raw_copper&#8221;,<br \/>\n      &#8220;count&#8221;: 1<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;ingredient&#8221;: &#8220;minecraft:raw_iron&#8221;,<br \/>\n      &#8220;count&#8221;: 2<br \/>\n    }<br \/>\n  ],<br \/>\n  &#8220;result&#8221;: {<br \/>\n    &#8220;id&#8221;: &#8220;minecraft:diamond&#8221;,<br \/>\n    &#8220;count&#8221;: 2<br \/>\n  },<br \/>\n  &#8220;smeltingTime&#8221;: 200,<br \/>\n  &#8220;fuelPerTick&#8221;: 1,<br \/>\n  &#8220;requiredTier&#8221;: 2<br \/>\n}<br \/>\n&#8220;`<br \/>\n#<br \/>\n1.21.1<br \/>\n&#8220;`<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;alloy_smelter:smelting&#8221;,<br \/>\n  &#8220;ingredients&#8221;: [<br \/>\n    {<br \/>\n      &#8220;ingredient&#8221;: { &#8220;item&#8221;: &#8220;minecraft:raw_copper&#8221; },<br \/>\n      &#8220;count&#8221;: 1<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;ingredient&#8221;: { &#8220;item&#8221;: &#8220;minecraft:raw_iron&#8221; },<br \/>\n      &#8220;count&#8221;: 2<br \/>\n    }<br \/>\n  ],<br \/>\n  &#8220;result&#8221;: {<br \/>\n    &#8220;id&#8221;: &#8220;minecraft:diamond&#8221;,<br \/>\n    &#8220;count&#8221;: 2<br \/>\n  },<br \/>\n  &#8220;smeltingTime&#8221;: 200,<br \/>\n  &#8220;fuelPerTick&#8221;: 1,<br \/>\n  &#8220;requiredTier&#8221;: 2<br \/>\n}<br \/>\n&#8220;`<br \/>\n#<br \/>\n1.20.1<br \/>\n&#8220;`<br \/>\n{<br \/>\n  &#8220;type&#8221;: &#8220;alloy_smelter:smelting&#8221;,<br \/>\n  &#8220;ingredients&#8221;: [<br \/>\n    {<br \/>\n      &#8220;item&#8221;: &#8220;minecraft:raw_copper&#8221;,<br \/>\n      &#8220;count&#8221;: 1<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;item&#8221;: &#8220;minecraft:raw_iron&#8221;,<br \/>\n      &#8220;count&#8221;: 2<br \/>\n    }<br \/>\n  ],<br \/>\n  &#8220;result&#8221;: {<br \/>\n    &#8220;item&#8221;: &#8220;minecraft:diamond&#8221;,<br \/>\n    &#8220;count&#8221;: 2<br \/>\n  },<br \/>\n  &#8220;smeltingTime&#8221;: 200,<br \/>\n  &#8220;fuelPerTick&#8221;: 1,<br \/>\n  &#8220;requiredTier&#8221;: 2<br \/>\n}<br \/>\n&#8220;`<br \/>\n<\/details>\n<p>Mod uses some resources from Alloy Forgery<\/p>\n<p>Copyright (c) Wisp Forest, MIT License<\/p>\n<p>My mod analog Alloy Forgery for Forge with my ideas and implementations.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Adds a multi-block structure for smelting ores<\/p>\n","protected":false},"featured_media":11628,"template":"","meta":{"_minecraft_slug":"alloy-smelter","_minecraft_project_id":"qq5kJ7f2","_minecraft_author":"TheFogIOF","_minecraft_license":"LicenseRef-Custom","_minecraft_downloads":39507,"_minecraft_follows":24,"_minecraft_client_side":"required","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"alloy-smelter.zip","_minecraft_size_bytes":1923733,"_minecraft_version_count":22,"_minecraft_updated_at":"2026-05-16T12:31:10.910120Z","_minecraft_date_created":"2025-03-06T09:45:34.478155Z","_minecraft_date_modified":"2025-12-15T03:05:14.442839Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/alloy-smelter","_minecraft_icon_attachment_id":11628,"_minecraft_imported_at":"2026-05-31T16:39:52+00:00","_minecraft_import_hash":"2d6f5105b8e3795886467eb378188f42","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[104,89,873,158,123,92],"mod_loader":[106,160],"minecraft_version":[36,60,93,94,101,102,62,37,38],"class_list":["post-11627","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-forge","mod_category-game-mechanics","mod_category-library","mod_category-neoforge","mod_category-technology","mod_category-utility","mod_loader-forge","mod_loader-neoforge","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-4"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Alloy Smelter - 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\/alloy-smelter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Alloy Smelter - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Adds a multi-block structure for smelting ores\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/\" \/>\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\\\/alloy-smelter\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alloy-smelter\\\/\",\"name\":\"Alloy Smelter - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alloy-smelter\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alloy-smelter\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/alloy-smelter-icon-688323dcb69c5822081630ad517a6c96a8bdf7b4_96.webp\",\"datePublished\":\"2026-05-31T16:39:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alloy-smelter\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alloy-smelter\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alloy-smelter\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/alloy-smelter-icon-688323dcb69c5822081630ad517a6c96a8bdf7b4_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/alloy-smelter-icon-688323dcb69c5822081630ad517a6c96a8bdf7b4_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alloy-smelter\\\/#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\":\"Alloy Smelter\"}]},{\"@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":"Alloy Smelter - 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\/alloy-smelter\/","og_locale":"en_US","og_type":"article","og_title":"Alloy Smelter - Minecraft","og_description":"Adds a multi-block structure for smelting ores","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/","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\/alloy-smelter\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/","name":"Alloy Smelter - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/05\/alloy-smelter-icon-688323dcb69c5822081630ad517a6c96a8bdf7b4_96.webp","datePublished":"2026-05-31T16:39:51+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/05\/alloy-smelter-icon-688323dcb69c5822081630ad517a6c96a8bdf7b4_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/05\/alloy-smelter-icon-688323dcb69c5822081630ad517a6c96a8bdf7b4_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/alloy-smelter\/#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":"Alloy Smelter"}]},{"@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\/11627","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\/11628"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=11627"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=11627"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=11627"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=11627"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}