Distillation Recipes
Properties
type- ResourceLocation, the recipe type. Must betheurgy:distillation.distillation_time- Integer, The number of ticks the distillation process takes.ingredient- Forge Ingredient, The item to be distilled.- the item
tagTag ResourceLocation, the tag accepted as input.- or
itemItem ResourceLocation, the item accepted as input.
- the item
ingredient_count- Integer, The amount of input ingredient required for the recipe. Defaults to 1 if not specified.resultItemStack representing the result of the distillation process.countInteger, the output count.itemItem ResourceLocation, the output item.
Example Recipe
{
"type": "theurgy:distillation",
"distillation_time": 200,
"ingredient": {
"tag": "forge:stone"
},
"ingredient_count": 10,
"result": {
"count": 1,
"item": "theurgy:mercury_shard"
}
}