ItemsAdderAdditionsItemsAdderAdditions
Recipes

Campfire Cooking

Add campfire cooking recipes for vanilla, ItemsAdder, or MMOItems items.

Since v1.0.3

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, an ItemsAdder item, or an MMOItems item. See IDs.

ingredient:
  item: BEEF
ingredient:
  item: my_pack:raw_fish_fillet
ingredient:
  item: mmoitems:consumable:raw_fish

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, ItemsAdder, and MMOItems items.
  • Tags such as #minecraft:fishes are not supported here because campfire recipes require one concrete input stack.
  • Recipe IDs such as roasted_berry_skewer are internal identifiers.
  • The namespace comes from info.namespace.

On this page