Incubation Recipes
Properties
type- ResourceLocation, the recipe type. Must betheurgy:incubation.incubation_time- Integer, the number of ticks the incubation process takes.mercury- Forge Ingredient, the mercury ingredient.tagTag ResourceLocation, the tag accepted as input.- or
itemItem ResourceLocation, the item accepted as input.
salt- Forge Ingredient, the salt ingredient.tagTag ResourceLocation, the tag accepted as input.- or
itemItem ResourceLocation, the item accepted as input.
sulfur- Forge Ingredient, the sulfur ingredient.tagTag ResourceLocation, the tag accepted as input.- or
itemItem ResourceLocation, the item accepted as input.
resultRecipeResult representing the result of the incubation process.
RecipeResults are much like ItemStack results, except they also supporttaginstead of justitem.
When a tag is specified, the result will be the first item in the tag, or of AlmostUnified is installed, the preferred item in the tag.- the item
tagTag ResourceLocation, the tag to produce.- or
itemItem ResourceLocation, the item to produce.
countInteger, the output count.nbtCompound NBT, the NBT data to be applied to the output item.
- the item
Example Recipe
{
"type": "theurgy:incubation",
"incubation_time": 200,
"mercury": {
"item": "theurgy:mercury_shard"
},
"result": {
"count": 1,
"item": "minecraft:wheat"
},
"salt": {
"item": "theurgy:alchemical_salt_crops"
},
"sulfur": {
"item": "theurgy:alchemical_sulfur_wheat"
}
}