Creating Items Via The Config

Creating items via the config can be confusing, but is far easier if you want to create a lot of simple items quickly. Here I'll be giving an example of an item from the config and commenting what the different values mean.

DO NOT USE THIS ONE. Use the raw if you want a template.

  sword:
    Material: GOLD_SWORD #This is the material. All materials names can be found [[http://www.minecraftinfo.com/idnamelist.htm|Here]]

    Name: '&cSword of Fire' #This is the name of the item. It must be surrounded by ' if you want color codes.

    Lore: #This is the lore. Each - represents a new line. 
    - Forged by the Gods #This must also be surrounded by ' or " if you want color codes.

    minDamage: 10 #This is the min damage
    maxDamage: 20 #This is the max damage

    #Armor: 20 This is the armor in percent. My item is not an armor piece, so I don't have armor on it.

    ItemFlags: #These are the item flags and are also represented by - for each new one. I only have hide_attributes on it, but I could have more.
    - HIDE_ATTRIBUTES #All item flags can be found on the Main page.

    Crafting: #This is the crafting. Each number represents a slot in the crafting table where 0 is the upper left and 8 is the lower right. 
      '0': GOLD_BLOCK #I recommend doing this via in-game commands as it can be a bit confusing.
      '1': GOLD_BLOCK
      '2': GOLD_BLOCK
      '3': GOLD_BLOCK
      '4': GOLD_BLOCK
      '5': GOLD_BLOCK
      '6': GOLD_BLOCK
      '7': STICK
      '8': GOLD_BLOCK

    Powers: #These are the powers. I recommend doing these via in-game commands as they are a bit confusing.
    - Fire-DAMAGE-200

    Enchants: #These are the enchants. Their syntax is like this ENCHANTMENT-LEVEL. A link to all enchantment names can be found [[http://minecraft.gamepedia.com/Enchanting|Here under data values]]
    - KNOCKBACK-2

Raw version:

  sword:
    Material: GOLD_SWORD
    Name: '&cSword of Fire'
    Lore:
    - Forged by the Gods
    minDamage: 10
    maxDamage: 20
    ItemFlags:
    - HIDE_ATTRIBUTES
    Crafting:
      '0': GOLD_BLOCK
      '1': GOLD_BLOCK
      '2': GOLD_BLOCK
      '3': GOLD_BLOCK
      '4': GOLD_BLOCK
      '5': GOLD_BLOCK
      '6': GOLD_BLOCK
      '7': STICK
      '8': GOLD_BLOCK
    Powers:
    - Fire-DAMAGE-200
    Enchants:
    - KNOCKBACK-2

Comments

Posts Quoted:
Reply
Clear All Quotes