Custom Items
Within your custom disaster you can create custom items which you can then reference in equipment slots for your custom mobs!
# * Your settings skeleton body with info about the disaster
settings:
# Settings info
# * Your core body for defining events and actions inside levels
core:
# Core info
# Your custom items skeleton body, this is where you can create your custom items
items:
# Define as many custom items as you want like this
# This will be the name of the item you use to reference it in the disaster for the custom entities section
coolSword:
# Items name in game
name: '&6Cool Sword'
# * Type of item (refer to resources for a list of available item names)
type: iron_sword
# If the enchants on this item should be hidden if there are any
hide_enchants: false
# Lore of the item
lore:
- '&eThis is line 1 of lore'
- '&bThis is line 2 of lore'
# You can define enchantments for your custom item like this
enchantments:
# You can list as many enchantments as you want here just follow this format
enchant 1:
# * The name of the enchantment (Uses the in-game enchantment name)
enchantment: sharpness
# * The level of the enchantment
level: 2
enchant 2:
enchantment: unbreaking
level: 3
strongerShield:
name: '&4Stronger Shield'
type: shield
hide_enchants: true
lore:
- '&eThis shield is a much more durable shield!'
- '&b+3 Durability'
enchantments:
enchant 1:
enchantment: unbreaking
level: 3Last updated