NBT Enhancement
# Required Dependency Plugin
Download here: NBTAPI (opens new window)
# Introduction to Enhanceable Items
Note: The following describes NBT attribute enhancement
Version 3.x can modify specific NBT tags based on enhancement levels to support attribute plugins like MMOItems
# Configuration Preview
Enable it in
nbt.yml
, which can be activated simultaneously with LORE enhancement
---
title: NBT Enhancement System
date: 2024-10-29 21:21:48
permalink: /wiki/PlayerIntensify/nbt
---
### Prerequisite Plugin
Requires [NBTAPI](https://www.spigotmc.org/resources/7939/) to function
### Configuration Options
```yaml
# Enable NBT enhancement system (true: enabled, false: disabled)
# When enabled, each enhancement level will only modify the configured NBT tags
# Other enhancement effects will NOT be applied!
enable:
# Armor
armor: false
# Axes
axe: false
# Bows
bow: false
# Shields
shield: false
# Swords
sword: false
# Tridents
trident: false
# Crossbows
crossbow: false
# Elytras
elytra: false
# Maces
mace: false
# Custom Group 1
customOne: false
# Custom Group 2
customTwo: false
# NBT Configuration
# Configure NBT tags for each enhancement level
# Works with plugins like MMOItems that read NBT data
# Example configurations:
armor:
1:
- "Test1: 1"
axe:
1:
- "CustomNBT: 10.0"
2:
- "CustomNBT: 20.0"
3:
- "CustomNBT: 30.0"
# Other item types follow same pattern
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"
lastUpdated: 2025-08-13 12:09:07