(old) Simple Armor

This is a simple armor which is created automatically without textures, ItemsAdder will generate it from the color you decided and will be similar to iron/diamond armors but with different color.

Creating an armor piece

Let's create a chestplate. To create other pieces you just have to repeat the following method and change the slot.

  my_armor_simple_chestplate:
    display_name: my_armor_simple chestplate
    permission: myarmor
    resource:
      generate: true
    durability:
      max_custom_durability: 400
    specific_properties:
      armor:
        slot: chest
        color: '#ff0001'
    attribute_modifiers:
      chest:
        armor: 7
        armorToughness: 1

The color property is important, it's the color that the armor will have ingame.

Done!

Nothing more to do. You just created a simple armor without drawing any texture!

Full configuration from the previous example

Click here to read the configuration file

Extract the zip into the contents folder of ItemsAdder