Recipe Item Types

Item

For regular items it will look something like this:

 "raw:item": "minecraft:iron_ingot"
Items with NBT

You only need the "match_nbt": trueif you are using this in an input slot. For output slots, the provided nbt will be added to the item regardless.

"raw:item": "envirocore:fe_input", "nbt": "{tier:2,energy:{capacity:8192}}", "match_nbt": true
Item Tags

This would be the same syntax for both input slots and output slots.

"raw:item_tag": "forge:ingots/iron"

For tags you can use various selectors to refine which items you want to target. Below is a list of possible selectors and what they do:

The following is an example of how to use these selectors with and item_tag:

{
	"raw:item_tag": "minecraft:flowers",
    "selector": {
		"type": "all_with_blacklist",
      	"values": ["botania"]
	}
}

Revision #1
Created 19 July 2021 18:15:31 by ValkyrieofNight
Updated 27 August 2021 16:02:04 by ValkyrieofNight