Started by
Eksity
on
Topic category: Help with Minecraft modding (Java Edition)
I'm trying to find a way to use forge's copper ingots- say from the mod create- that have the tag #forge:ingots/copper. I want to be able to add custom armor sets into my game based on what materials are in the mods I have. For now I'm just yoinking textures from Ice & Fire, so I'm not going to release this publicly. I'm trying to use tags in the recipes, but it doesn't seem to work. Is there any way to do this?
Code for my chestplate to show what I'm currently doing that doesn't work:
{
"group": "coppersilverstolen",
"type": "minecraft:crafting_shaped",
"pattern": [
"0 0",
"000",
"000"
],
"key": {
"0": {
"tag": "ingots/copper"
},
},
"result": {
"item": "coppersilverstolen:copper_armor_chestplate",
"count": 1
}
}
try "tag": "#forge:ingots/copper"