AuroraCollections
  • AuroraCollections
  • Configuration
    • Main configuration
    • Category configuration
    • Collection configuration
    • Menu configuration
      • Categories (main menu)
      • Category rewards
      • Collection list
      • Collection progression
  • Commands
  • Rewards
  • Permissions
  • Placeholders
  • API
  • Compatible plugins
Powered by GitBook
On this page
  1. Configuration
  2. Menu configuration

Collection list

Guide to configure the collection list menus. menus/collection_list.yml

PreviousCategory rewardsNextCollection progression

Last updated 1 month ago

For the general ITEM configuration please see .

config-version: 1

# Title of the inventory gui
title: "{category} collections"

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

# Item to show what category you are viewing collections for.
# This will be merged with the menu item in categories.yml. 
# You can use the same placeholders here.
category-icon:
  enabled: true
  item:
    slot: 4

# In what slots and in what order should we display the collections?
display-area: [
  10, 11, 12, 13, 14, 15, 16,
  19, 20, 21, 22, 23, 24, 25,
  28, 29, 30, 31, 32, 33, 34,
  37, 38, 39, 40, 41, 42, 43
]

# If enabled, it will display the configured item instead of the collection
# item until the player gathers at least 1 item for the collection.
secret-collection-display:
  enabled: true
  item:
    name: "&c{collection_name}"
    material: gray_dye
    lore:
    - "&7You have not unlocked this"
    - "&7collection yet. Collect at least 1"
    - "&7item to unlock it!"

# Pagination items, back item and filler item.
items:
  filler:
    enabled: true
    item:
      name: " "
      material: BLACK_STAINED_GLASS_PANE
      hide-tooltip: true
  back:
    name: "&7Back"
    material: ARROW
    slot: 45
  previous-page:
    name: "&7Previous page"
    material: ARROW
    slot: 48
  current-page:
    name: "{current}/{max} page"
    material: NETHER_STAR
    slot: 49
  next-page:
    name: "&7Next page"
    material: ARROW
    slot: 50

# Your custom items. You can have any number of custom items here.
# Make sure to use unique keys for them.
custom-items:
  close:
    name: "&cClose"
    material: BARRIER
    slot: 53
    on-left-click:
      - "[close]"
Item config