Recipes
Campfire Cooking
Add campfire cooking recipes for custom or vanilla items in ItemsAdder.
Since v1.0.7
Add campfire cooking recipes without creating extra recipe files.
Parameters
enabled
Optional. Defaults to true. Set to false to skip registering the recipe.
ingredient.item
Required. The input item for the recipe. Use a vanilla material or a custom ItemsAdder item.
ingredient:
item: BEEFingredient:
item: my_pack:raw_fish_filletresult.item
Required. The cooked output item.
result:
item: COOKED_BEEFresult.amount
Optional. Defaults to 1. The number of items produced.
cook_time
Optional. Defaults to 600 ticks. Cooking time. 20 ticks = 1 second.
exp
Optional. Defaults to 0.0. Experience granted when taking the cooked result.
Full example
info:
namespace: my_pack
recipes:
campfire_cooking:
roasted_berry_skewer:
ingredient:
item: my_pack:berry_skewer_raw
result:
item: my_pack:berry_skewer_roasted
amount: 1
cook_time: 160
exp: 0.25Notes
- Supports vanilla and custom ItemsAdder items.
- Recipe IDs such as
roasted_berry_skewerare internal identifiers. - The namespace comes from
info.namespace.