Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Alloy Smelter
ModLicenseRef-Custom

Alloy Smelter

Adds a multi-block structure for smelting ores

30.7K
Downloads
21
Followers
4 months ago
Updated
📦
22
Versions
librarytechnologyutilityforgeneoforge
Download Latestv1.21.1-1.2.1View on Modrinth

📖About Alloy Smelter

Alloy Smelter

This 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.

Example

IMPORTANT

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.

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.

Features

Forge automation

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.

Change blocks for each level of the forge.

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.

Each forge level has its own BlockTag:

  • Forge Tier 1: alloy_smelter:alloy_smelter_blocks_tier1
  • Forge Tier 2: alloy_smelter:alloy_smelter_blocks_tier2
  • Forge Tier 3: alloy_smelter:alloy_smelter_blocks_tier3

Add custom fuel

If you want to add fuel for the smelter, just add this tag "alloy_smelter:alloy_smelter_fuel" to any other fuel.

Add and edit recipes for the forge

To create a recipe you can use datapacks or kubejs. Having created a json file with your recipe.

Example of json recipe

1.21.4

{
  "type": "alloy_smelter:smelting",
  "ingredients": [
    {
      "ingredient": "minecraft:raw_copper",
      "count": 1
    },
    {
      "ingredient": "minecraft:raw_iron",
      "count": 2
    }
  ],
  "result": {
    "id": "minecraft:diamond",
    "count": 2
  },
  "smeltingTime": 200,
  "fuelPerTick": 1,
  "requiredTier": 2
}

1.21.1

{
  "type": "alloy_smelter:smelting",
  "ingredients": [
    {
      "ingredient": { "item": "minecraft:raw_copper" },
      "count": 1
    },
    {
      "ingredient": { "item": "minecraft:raw_iron" },
      "count": 2
    }
  ],
  "result": {
    "id": "minecraft:diamond",
    "count": 2
  },
  "smeltingTime": 200,
  "fuelPerTick": 1,
  "requiredTier": 2
}

1.20.1

{
  "type": "alloy_smelter:smelting",
  "ingredients": [
    {
      "item": "minecraft:raw_copper",
      "count": 1
    },
    {
      "item": "minecraft:raw_iron",
      "count": 2
    }
  ],
  "result": {
    "item": "minecraft:diamond",
    "count": 2
  },
  "smeltingTime": 200,
  "fuelPerTick": 1,
  "requiredTier": 2
}

Mod uses some resources from Alloy Forgery

Copyright (c) Wisp Forest, MIT License

My mod analog Alloy Forgery for Forge with my ideas and implementations.

👥 Team & Contributors

TheFogIOF
TheFogIOFOwner

⚙️ Compatibility

Environment
✅ Client & Server
Loaders
forgeneoforge
Minecraft Versions
1.211.21.1

🔗 Links

Modrinth Page