ItemStack Options - nulli0n/nightcore-spigot GitHub Wiki
The following options are available to cusomtize item stacks in configs.
Item_Example:
# Sets item material. If material is not provided or material is 'air', no item will be appeared in game.
# Item material can be found on ingame item using F3+H mode.
# [REQUIRED]
# [Defaults to AIR]
Material: DIAMOND_SWORD
# Item amount. Please note, that in some special cases this option will be ignored.
# [OPTIONAL]
# [Defaults to 1]
Amount: 1
# Custom name displayed instead of default item name.
# [OPTIONAL]
# [Defaults to null]
Name: '<red><b>Super Sword</b></red>'
# Item lore.
# [OPTIONAL]
# [Defaults to null]
Lore:
- '<gray>This is example of custom lore.</gray>'
- '<green>Another line in green.</green>'
# Sets item durability value (breakable items only).
# [OPTIONAL]
# [Defaults to 0]
Durability: 50
# Sets the custom model for item from resourcepack.
# [OPTIONAL]
# [Defaults to null]
Custom_Model_Data: 10015
# Sets the custom skin/texture for `PLAYER_HEAD` items.
# Some textures can be found here: https://minecraft-heads.com/ (use the "Minecraft URL" value)
# [OPTIONAL]
# [Defaults to null]
SkinURL: f5869f62abc5dc73ce76b0d790136e74713aa215dfacf1df73175c19102e763b
# Adds specific enchantment(s) on item.
# You have to use client enchantment names in English only!
# [OPTIONAL]
# [Defaults to null]
Enchants:
sharpness: 2
knockback: 1
# Sets the color for leather armors and potions.
# Syntax: `'R,G,B'`. Use `-1` for random value(s) (0-255).
# [OPTIONAL]
# [Defaults to null]
Color: 255,0,255
# Adds unbreakable tag to item.
# [OPTIONAL]
# [Defaults to false]
Unbreakable: true
# Adds specific flags to item.
# https://hub.spigotmc.org/javadocs/spigot/org/bukkit/inventory/ItemFlag.html
# You can use asterisk (*) to include all the flags.
# [OPTIONAL]
# [Defaults to null]
Item_Flags:
- '*'
- HIDE_ATTRIBUTES
- HIDE_ENCHANTS