#Issues in creating custom crafting recipe [1.21.3]

12 messages · Page 1 of 1 (latest)

frank patio
#

Hey! I'm trying to create a custom crafting recipe for my mod. I have what I believe to be a proper json crafting file, but whenever I load up my modded minecraft, the recipie doesn't work! I've been pulling out my hair for like hours over this so any help would be appreciated lol

#
  "type": "minecraft:crafting_shaped",
  "pattern": [
    " F ",
    " C ",
    "   "
  ],
  "key": {
    "F": {
      "tag": "minecraft:feather"
    },
    "C": {
      "item": "minecraft:copper"
    }
  },
  "result": {
    "id": "useful_copper:copper_dart",
    "count": 4
  }
}```
#

Here's the code in the json file

#

here is it's location

#

my mod id IS useful_copper

dim rock
#

1.21.3?

frank patio
#

yep

dim rock
#

they changed the recipe format

frank patio
#

Damn

dim rock
#
{
  "type": "minecraft:crafting_shaped",
  "category": "misc",
  "key": {
    "A": "rose_gold:rose_gold_upgrade_smithing_template",
    "B": "minecraft:iron_ingot",
    "C": "#minecraft:stone_crafting_materials"
  },
  "pattern": [
    "BAB",
    "BCB",
    "BBB"
  ],
  "result": {
    "count": 2,
    "id": "rose_gold:rose_gold_upgrade_smithing_template"
  }
}
frank patio
#

seems like they're changing everything up