Items (advanced)
All the subtleties of item creation
This allows you to change the name displayed on the top of an item.
my_item:
displayname: "<red><bold>Example" #example name
This allows you to change the item type
my_item:
material: WOODEN_SWORD
This allows you to change the color of an item made of a supported material (e.g. leather armor).
my_item:
color: 3, 252, 136 #rgb
This allows you to add lines of text under the item name.
my_item:
lore:
- "One line"
- "<green>Another line"
This allows Oraxen to know recognise the item, it is by default set to true and you should not have to change it. If you do it anyway, the mechanics of the items will no longer work.
my_item:
injectID: false
This options allows you to prevent an item from being enchanted via anvils or enchantment tables.
This does not prevent enchantments from being applied in the config.\
my_item:
disable_enchanting: true
This option allows you to exclude an item from the oraxen inventory. It will no longer be displayed but you can still get it using oraxen give command. It is useful for items used in other plugins like inventory icons.
excludeFromInventory: true
This allows you to change the number of damage of a item (not very useful)
my_item:
durability: 10
This will make your item unbreakable (for real, using minecraft dedicated property).
my_item:
unbreakable: true
This will make your item unstackable. Useful for backpacks and other custom items that you want to be unique.
my_item:
unstackable: true
my_item:
ItemFlags:
- HIDE_ENCHANTS
- HIDE_ATTRIBUTES
- HIDE_UNBREAKABLE
- HIDE_DESTROYS
- HIDE_PLACED_ON
- HIDE_POTION_EFFECTS
This allows you to add custom Potion Effects to your potion. Get the list of available effects here.
my_item:
PotionEffects:
# - type: Get the list here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/potion/PotionEffectType.html
# - duration: in ticks
# - amplifier: potion effects level
# - ambient: true/false, makes potion effect produce more, translucent, particles.
# - particles: true/false, whether this effect has particles or not
# - icon: true/false, whether this effect has an icon or not
- { type: WITHER,
duration: 200,
amplifier: 2,
ambient: false,
particles: true,
icon: true }
This allows you to add minecraft attributes to your item. They are very powerful and allow you to make an item that adds hearts, increases the player's speed, etc. Get the list of available attributes here.
my_item:
AttributeModifiers:
# - attribute: Get the list here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/attribute/Attribute.html
# - operations: 0 for ADD_NUMBER, 1 for ADD_SCALAR, 2 for MULTIPLY_SCALAR_1;
# - slot: HAND, OFF_HAND, FEET, LEGS, CHEST or HEAD
- {
attribute: GENERIC_MOVEMENT_SPEED,
amount: 0.1,
operation: 0,
slot: HAND
}
If you want to enchant your item (even with non vanilla levels like for example sharpness 15), you can do it with this section.
my_item:
Enchantments:
protection: 4
flame: 34
sharpness: 18
Here is a list of enchants available in minecraft vanilla:
protection
fire_protection
feather_falling
blast_protection
projectile_protection
respiration
aqua_affinity
thorns
depth_strider
frost_walker
binding_curse
sharpness
smite
bane_of_arthropods
knockback
fire_aspect
looting
sweeping
efficiency
silk_touch
unbreaking
fortune
power
punch
flame
infinity
luck_of_the_sea
lure
loyalty
impaling
riptide
channeling
multishot
quick_charge
piercing
mending
vanishing_curse
soul_speed
my_item:
Pack:
generate_model: true
parent_model: "custom/items/generated_elite"
textures:
- custom/items/elite_zombie_walk
custom_model_data: 452
Last modified 2mo ago