This simple and lightweight plugin adds an easy way to make pottery sherds more accessible to players on your server by allowing them to be crafted. The crafting recipes are unique for each type of pottery sherd and configuration options are provided to customize the shape and ingredients for each recipe.
Configurable recipes for each type of pottery sherd
Option to enable/disable any sherd's recipe on the server
Built-in reload command to apply configuration updates without needing to restart the server
Commands:
/csreload - reloads the configuration options and applies them on the server
Permissions:
craftablesherds.reload - grants access to the /csreload command
craftablesherds.craft.<type> - grants access to the recipe for the specified type of pottery sherd (example: craftablesherds.craft.angler)
Config.yml preview:
Code (YAML):
# CraftableSherds Recipes Configuration # # This configuration file allows you to define custom crafting recipes for pottery sherds.
# Instructions: # - Each recipe must have at least one ingredient. # - All defined ingredients must be utilized in the recipe's shape. # - Ingredients must refer to an obtainable material. # - To create an empty slot in a recipe's shape, use a character without a corresponding ingredient mapping. # (by default, this is done using a space ' ')
# IMPORTANT: After making changes to this file, use the '/csreload' # command in-game to apply the updates without needing to restart the server. recipes:
angler:
enabled: true
# Set to false to disable this specific recipe. shape: # Define the 3x3 crafting grid pattern where ingredients are represented by characters. -
" A " -
"ABA" -
" A " ingredients: # Associate each character in the shape with a material to be used as the ingredient. A: "BRICK" B: "FISHING_ROD"