ItemsAdderAdditionsItemsAdderAdditions
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: BEEF
ingredient:
  item: my_pack:raw_fish_fillet

result.item

Required. The cooked output item.

result:
  item: COOKED_BEEF

result.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.25

Notes

  • Supports vanilla and custom ItemsAdder items.
  • Recipe IDs such as roasted_berry_skewer are internal identifiers.
  • The namespace comes from info.namespace.

On this page