AuroraCrafting
  • AuroraCrafting
  • Configuration
    • Main config
    • Workbench config
    • Blueprint config
    • Smithing blueprint config
    • Cooking blueprint config
    • Brewing recipes
    • Stonecutter blueprint config
    • Cauldron blueprint config
    • Recipe book config
    • Merchant config
    • Disabled vanilla recipes config
  • Commands
  • Permissions
  • Compatible plugins
  • API
Powered by GitBook
On this page
  1. Configuration

Workbench config

Guide how to create and configure new workbenches.

You can create unlimited workbenches by copying and adjusting the default.ymlconfig file in workbenchesfolder.

The ID of the workbench is the same as its config filename. For example default.yml workbench will have the ID: default.

Here is an example workbench config:

# Title of the workbench inventory
title: "Craft Item"

# How many rows should the workbench inventory have?
rows: 6

# Result slot is where the result of the recipe will be placed.
result-slot: 23

# Matrix slots are used to assemble the recipe.
matrix-slots: [ 10, 11, 12, 19, 20, 21, 28, 29, 30 ]

# Quick crafting slots are used to craft items without assembling the recipe in the recipe.
quick-crafting-slots: [ 16, 25, 34 ]

# Where should we put the items that indicate the completion of a recipe?
completion-indicator-slots: [ 45, 46, 47, 48, 49, 50, 51, 52, 53 ]

# This is an experimental feature and it will probably be experimental forever.
# Turning this on might cause performance issues.
include-vanilla-recipes-in-quick-crafting: false

# Options when a recipe is opened from the recipe book
recipe-book:
  # Title in the recipe book when you view a recipe from this workbench
  title: "Crafting recipe"
  # Previous recipe slot button (only when using grouping)
  prev-recipe-slot: 52
  # Next recipe slot button (only when using grouping)
  next-recipe-slot: 53
  # Recipe result slot
  result-slot: 25
  # Back slot if applicable
  back-slot: 45
  # Additional custom items to map to the recipe view inventory
  custom-items: { }

# Other custom items to add to the workbench inventory
# For example some cosmetic stuff
custom-items: { }

# You can also override every default item here for this workbench that are
# defined in the menus/workbench_defaults.yml
PreviousMain configNextBlueprint config

Last updated 13 days ago