configs/Items.yml

Items.yml

This file is for defining custom items.

Defining items

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# The name of the item, this is used when referencing it in another config
diamond_sword:
  #The itemid of this item
  Id: 276
  #The item data, which can be used to, for instance
  # set the colour of a wool block
  Data: 0
  #The durability of the item, to already make it damaged for example.
  Durability: 0
  #This node contains the enchantments for this item
  Enchantments:
    #The name of this enchantment
    knockback:
      #Whether or not this entchantment is enabled,
      # this allows you to disable an item without
      # removing it from the config
      Enabled: true
      #The enchantment type, you can choose from the list
      # at the bottom of this page
      Enchantment: Knockback
      #The absolute probability that the item will get this
      # enchantment, so this sword has a 30% chance
      # to get this enchantment
      Probability: 30
      #The enchantment level, this can be anything between, but not including 0 and 128
      Level: 2
    sharpness:
      Enabled: true
      Enchantment: Damage All
      Probability: 50
      Level: 3

Available enchantments

The table below contains three columns of enchantments available to use. The first column is the Corruption enchantment name which should be used inside the Enchantments node, the second column is the Bukkit name for the enchantments, which can also be used inside the Enchantments node. And the third column contains the vanilla in-game Minecraft enchantment names, which CANNOT be used inside the Enchantments node.

Corruption EnchantmentBukkit EnchantmentMinecraft Enchantment
Protection EnvironmentalPROTECTION_ENVIRONMENTALProtection
Protection FirePROTECTION_FIREFire Protection
Protection FallPROTECTION_FALLFeather Falling
Protection ExplosionsPROTECTION_EXPLOSIONSBlast Protection
Protection ProjectilePROTECTION_PROJECTILEProjectile Protection
OxygenOXYGENRespiration
Water WorkerWATER_WORKERAqua Affinity
Damage AllDAMAGE_ALLSharpness
Damage UndeadDAMAGE_UNDEADSmite
Damage ArthropodsDAMAGE_ARTHROPODSBane of Arthropods
KnockbackKNOCKBACKKnockback
Fire AspectFIRE_ASPECTFire Aspect
Loot Bonus MobsLOOT_BONUS_MOBSLooting
Dig SpeedDIG_SPEEDEfficiency
Silk TouchSILK_TOUCHSilk Touch
DurabilityDURABILITYUnbreaking
Loot Bonus BlocksLOOT_BONUS_BLOCKSFortune
ThornsTHORNSThorns
Arrow DamageARROW_DAMAGEPower
Arrow KnockbackARROW_KNOCKBACKPunch
Arrow FireARROW_FIREFlame
Arrow InfiniteARROW_INFINITEInfinity

Comments

Posts Quoted:
Reply
Clear All Quotes