Jump to content

Recommended Posts

Posted

Hey guys,

 

So I'm not completely sure how I'm supposed to add recipes for 1.12. For my mod I need to be able to add recipes for items I've created that use other items I've created or vanilla items.

 

I found this topic which offers a little help but not much.

 

Thanks,

Posted (edited)

Can a recipe be a part of multiple groups? It appears not, but thought I'd ask just in case I'm wrong.

 

Does anyone know where this error is coming from: 

Unknown recipe type: expanded:crafting_shaped

 

Here's the JSON file it's having a problem with:

{
  "type": "crafting_shaped",
  "group": "cactus",
  "pattern": [
    "  #",
    " ##",
    "###"
  ],
  "key": {
    "#": {
      "item": "expanded:cut_cactus_block_block"
    }
  },
  "result": {
    "item": "expanded:cut_cactus_stairs_block",
    "count": 3
  }
}

 

Edited by DragonFerocity
Posted

Try changing the "type" to "minecraft:crafting_shaped"
I had this issue until I figured it out

Example:
 

{
  "type": "minecraft:crafting_shaped",
  "group": "minecraft:slime",
  "pattern": [
    "###",
    "###",
    "###"
  ],
  "key": {
    "#": {
      "item": "blobman:blue_slimeball"
    }
  },
  "result": {
    "item": "blobman:blue_slime"
  }
}

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.