Category Configuration Examples

This page will show you a few examples of category configuration for you to get inspiration

categories.yml

# The category ID (to be used in recipes)
MATERIAL:
  # These lines configure the icon for the category in the recipes menu
  material: IRON_INGOT
  display-name: "&9&nMaterials"
  item-flags:
  - HIDE_ATTRIBUTES
  # <--
HEAVY_PLATE:
  material: DIAMOND_CHESTPLATE
  display-name: "&9&nHeavy Plate Armors"
  item-flags:
  - HIDE_ATTRIBUTES
PLATE:
  material: IRON_CHESTPLATE
  display-name: "&9&nPlate Armors"
  item-flags:
  - HIDE_ATTRIBUTES
MAIL:
  material: CHAINMAIL_CHESTPLATE
  display-name: "&9&nMail Armors"
  item-flags:
  - HIDE_ATTRIBUTES
LEATHER:
  material: LEATHER_CHESTPLATE
  display-name: "&9&nLeather Armors"
  item-flags:
  - HIDE_ATTRIBUTES
SWORD:
  material: IRON_SWORD
  display-name: "&9&nSwords"
  item-flags:
  - HIDE_ATTRIBUTES
GREATSWORD:
  material: DIAMOND_SWORD
  display-name: "&9&nGreatswords"
  item-flags:
  - HIDE_ATTRIBUTES
AXE:
  material: IRON_AXE
  display-name: "&9&nAxes"
  item-flags:
  - HIDE_ATTRIBUTES
GREATAXE:
  material: DIAMOND_AXE
  display-name: "&9&nGreateaxes"
  item-flags:
  - HIDE_ATTRIBUTES
DAGGER:
  material: IRON_SWORD
  display-name: "&9&nDaggers"
  item-flags:
  - HIDE_ATTRIBUTES
POTION:
  material: POTION
  display-name: "&9&nPotions"
  potion-effect: INSTANT_HEALTH
  item-flags:
  - HIDE_ATTRIBUTES
BOOK:
  material: ENCHANTED_BOOK
  display-name: "&9&nBooks"
  item-flags:
  - HIDE_ATTRIBUTES
MISCELLANEOUS:
  material: SLIME_BALL
  display-name: "&9&nMiscellaneous"

Last updated