Compatibility
Minecraft: Java Edition
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
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.
Features
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 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.