Added recipe for Stalinium Mace

This commit is contained in:
2025-10-22 11:34:05 +02:00
parent 65ed2e4d6f
commit abf83fd092
@@ -169,5 +169,16 @@ public class ModRecipeProvider extends RecipeProvider implements IConditionBuild
.unlocks("has_netherite", has(Items.NETHERITE_BOOTS))
.save(recipeOutput,
ResourceLocation.fromNamespaceAndPath(Stalinium.MODID, "smithing/stalinium_boots"));
SmithingTransformRecipeBuilder.smithing(
Ingredient.of(ModItems.STALINIUM_SMITHING_TEMPLATE.get()),
Ingredient.of(Items.MACE),
Ingredient.of(ModBlocks.STALINIUM_BLOCK.get()),
RecipeCategory.COMBAT,
ModItems.STALINIUM_MACE.get()
)
.unlocks("has_netherite", has(Items.NETHERITE_BOOTS))
.save(recipeOutput,
ResourceLocation.fromNamespaceAndPath(Stalinium.MODID, "smithing/stalinium_mace"));
}
}