> For the complete documentation index, see [llms.txt](https://docs.eliteminecraftplugins.com/elitearmor/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eliteminecraftplugins.com/elitearmor/general-information/creating-armor-sets.md).

# Creating Armor Sets

{% hint style="info" %}
Notice: The **`Effects:`** list at the top of each file is for the **`Armor Set Effects`**

Only the **Weapon** in each set can be customized to have separate effects using **`effects:`**
{% endhint %}

### How to create your own armor sets

The easiest way to create an armor set is to copy and paste one of the premade sets into the armor folder. After you have pasted the set, simply rename it to the name of the set you want to create and edit the values within the file.

When creating an armor set, you can customize each piece to have specific vanilla enchantments or custom enchantments through EliteEnchantments **(ONLY custom enchantments from EliteEnchantments are supported at this time!)** See the **Weapon** in the example below to learn how to add custom enchantments.

## Example Set #1

```yaml
Apply-Message: "&c&lPhantom &aset activated"
Remove-Message: "&c&lPhantom &cset de-activated"

Required-Items: 4

Sounds:
  apply: "ENTITY_BAT_TAKEOFF"
  remove: "ENTITY_HORSE_SADDLE"

Effects:
  - 'DAMAGE:25'

Upgrade:
  material: "YELLOW_DYE"
  data: 0
  name: "&e&lHeroic (&c&lPhantom&e&l) Upgrade"
  lore:
    - '&7Apply to any &c&lPhantom &7armor'
    - '&7for a &6%percent%% &7chance to imbue it'
    - '&7with the power of Heroic Armor'

Weapon:
  effects:
    - 'Damage:10'
  enchants:
    - 'DAMAGE_ALL:5'
    - 'DURABILITY:3'
  custom-enchants:
    - 'rage:6'
    - 'confusion:3'
  material: "DIAMOND_SWORD"
  data: 0
  name: "&c&lPhantom Scythe"
  lore:
    - '&7An eerie blade designed to'
    - '&7cut through anything'
    - ''
    - '&c&lPHANTOM WEAPON BONUS'
    - '&c* Deal +10% damage to all enemies.'
    - '&7&o(Requires all 4 phantom set items.)'

Helmet:
  enchants:
    - 'PROTECTION_ENVIRONMENTAL:4'
    - 'DURABILITY:3'
  material: "DIAMOND_HELMET"
  data: 0
  name: "&c&lPhantom Hood"
  lore:
    - '&cThe fabled hood of the phantom'
    - ''
    - '&c&lPHANTOM SET BONUS'
    - '&cDeal +25% damage to all enemies.'
    - '&7&o(Requires all 4 phantom items.)'
Chestplate:
  enchants:
    - 'PROTECTION_ENVIRONMENTAL:4'
    - 'DURABILITY:3'
  material: "DIAMOND_CHESTPLATE"
  data: 0
  name: "&c&lPhantom Shroud"
  lore:
    - '&cThe legendary shroud of the Phantom.'
    - ''
    - '&c&lPHANTOM SET BONUS'
    - '&cDeal +25% damage to all enemies.'
    - '&7&o(Requires all 4 phantom items.)'
Leggings:
  enchants:
    - 'PROTECTION_ENVIRONMENTAL:4'
    - 'DURABILITY:3'
  material: "DIAMOND_LEGGINGS"
  data: 0
  name: "&c&lPhantom Robeset"
  lore:
    - '&cThe demonic robe of the Phantom.'
    - ''
    - '&c&lPHANTOM SET BONUS'
    - '&cDeal +25% damage to all enemies.'
    - '&7&o(Requires all 4 phantom items.)'
Boots:
  enchants:
    - 'PROTECTION_ENVIRONMENTAL:4'
    - 'DURABILITY:3'
  material: "DIAMOND_BOOTS"
  data: 0
  name: "&c&lPhantom Sandals"
  lore:
    - '&cThe silent sandals of the Phantom.'
    - ''
    - '&c&lPHANTOM SET BONUS'
    - '&cDeal +25% damage to all enemies.'
    - '&7&o(Requires all 4 phantom items.)'
```
