NBT Enhancement
# Required Dependency Plugin
Click to download: NBTAPI (opens new window)
# Introduction to Enhanceable Items
Note: The following describes NBT attribute enhancement.
Version 3.x allows replacing specified NBT tags of items based on enhancement levels to support attribute plugins such as MMOItems.
# Configuration Preview
Enable it in nbt.yml. It can be enabled simultaneously with lore enhancement.
# ======Custom NBT Attribute Enhancement System======
#
# This feature requires the dependency plugin NBTAPI: https://www.spigotmc.org/resources/7939/
# Set item categories to true to enable, false to disable
# If NBT enhancement is enabled for a specific item category, only the configured NBT tags for that category will be replaced
# Additionally, the default vanilla enhancement scheme for that item category in config.yml will no longer take effect!!!
enable:
# Armor
armor: false
# Axe
axe: false
# Bow
bow: false
# Shield
shield: false
# Sword
sword: false
# Trident
trident: false
# Crossbow
crossbow: false
# Elytra
elytra: false
# Mace
mace: false
# Custom Group One
customOne: false
# Custom Group Two
customTwo: false
# Corresponding configurations: You need to write the NBT tags for each level here to work with plugins like MMOItems
armor:
1:
- "Test1: 1"
axe:
1:
- "CustomNBT: 10.0"
2:
- "CustomNBT: 20.0"
3:
- "CustomNBT: 30.0"
bow:
1:
- "Test1: 1"
shield:
1:
- "Test1: 1"
sword:
1:
- "Test1: 1"
trident:
1:
- "Test1: 1"
crossbow:
1:
- "Test1: 1"
elytra:
1:
- "Test1: 1"
mace:
1:
- "Test1: 1"
customOne:
1:
- "Test1: 1"
customTwo:
1:
- "Test1: 1"