Creating Items

Basics of creating items and other stuff

Basic Item Example

You can copy and paste this to make multiple items!

items:
    example:
        id: DIAMOND_SWORD
        slot: 0
        amount: 1
        durability: 1500
        name: "&7Cool Gamer Sword"
        lore:
        - ' '
        - "&eCute little lore for you =D"

Configuration

Basics

ID <- This will be the item you will receive upon joining, world switch or respawning

Slot <- Slot where the player will receive the item, however if another item is in that slot you will not receive the item except if you add overwrite to the item flags

When using slots, you are able to use the following to set armor pieces:

Amount <- The amount of the items you will receive!

Durability <- You can use this to change items durability from default to something else

Name <- Custom name of the item you can use, if not set it default to normal (supports either minecraft colors or hex code)

Lore <- allows you to add description to items (supports either minecraft colors or hex code)

Extras

Enchantments <- allows you to add enchantments to items! If you would like to check out all of the enchantments consider checking this out:

Enchantments List

Hide Attributes <- when this is enabled, this it will hide damage of item and other

Hide Enchants <- when this is enabled, it will hide all active enchantments on the lore of item

Worlds

Enabled Worlds <- when you have this added, you will be able to add where you want to allow this item to be received at!

Last updated