#Can I use Smithing Transform with something other than a netherite ingot?
1 messages · Page 1 of 1 (latest)
Okay okay, the link was to "Recipe Documentation - Smithing Transform Recipe" in the bedrock wiki
what I'm trying to do is create an addon that adds a custom smithing template that when applied to gold nuggets, turns them into a new custom item, gold coins. The wiki page has me confused as to whether this is possible.
Any help or pointing in the right direction would be very appreciated. Thank you!
The only way possible to do it is creating an craftable item to use as item to smite the gold nuggets to gold coins, like an hammer or press hammer, because without it, I don't think it can be did well
IF, you use an common smithing table, because if you doesn't use, you can simply make an one slot custom crafting table to convert gold nuggets or other ore nuggets to coins
Hope this helps you S2
Thanks for responding! So the smithing table isn't hard coded to be limited to netherite ingots and armor?
I watched a video that said it was hard coded that way, can't be changed. It was an old video, so I had hope it had changed since then
The wiki says the only accepted item for a smithing transform is a netherite ingot, but then it says something about a tag that gave me hope I could make a custom item that has that same tag for it to work
Recipe Documentation - Smithing Transform Recipe | Microsoft Learn https://learn.microsoft.com/en-us/minecraft/creator/reference/content/recipereference/examples/recipedefinitions/minecraftrecipe_smithingtransform?view=minecraft-bedrock-stable
No, technically, you can do an custom smithing craft to make your coins
Okay! I'll get started and come back here if I have issues
{
"format_version": "1.16.100",
"minecraft:recipe_smithing": {
"description": {
"identifier": "custom:smithing_table_recipe"
},
"tags": ["smithing_table"],
"base": {
"item": "(Principal item tag here)"
},
"addition": {
"item": "(Item tag additional to the craft)"
},
"result": {
"item": "(Your final item tag product)"
}
}
}
Try to use this and see if works
No no, you just have to replace the parentheses part to the tags equivalent to the item in-game
Including your gold coins
@glossy tulip Hey, so I got around to trying this. As a test, I did gold ingot + gold nugget = gold coin, but the items aren't able to go into the slots
This is the recipe json
rn looking at this page, gonna make custom items with the tags "minecraft:transformable_items" and "minecraft:transform_materials"
ugh okay so I think I'm understanding how this is working now
It just means I'll have to either make 3 custom items or figure out a recipe otherwise, which is going to be difficult with the goals I started with
Can I make a recipe that returns an item that was used in the recipe? Like, when you make a cake, it gives you back the bucket?
Only in this case it would be something like gold nuggets + custom stamp item = gold coin, but the stamp is not consumed?