Creating Enchantments

How to create your own enchantments

Creating enchantments is a simple process, and you can customize each one to your likings. You can create enchantments via the YAML file or the Web Panel.

Using the Web Panel will require you to generate a link in-game via /ee upload

  headless: #[Name (Lowercase)]
    name: "Headless" #[Display Name]
    description: #[Description]
      - 'Victims have a chance of'
      - 'dropping their head on death.'
    group: "SIMPLE" #[Group]
    applies: "SWORD" #[Application Group]
    type: "KILL" #[Type]
    levels: 
      1: #[Level Number]
        souls: 20 #(OPTIONAL)
        chance: 2.5 #[Chance] (OPTIONAL)
        cooldown: 5 #[Cooldown] (OPTIONAL)
        condition: "isHolding BOW" #(OPTIONAL)
        effects:
          - 'DROP_HEAD:TARGET' #[Effect]

NEW: You can now add multiple types and execute different effects depending on the effect type you have triggered

  test:
    name: "Test"
    description:
      - 'Test enchantment to show the'
      - 'multiple type feature'
    group: "SIMPLE"
    applies: "SWORDS"
    type: "KILL,ATTACK"
    levels:
      1:
        chance: 15
        effects:
          - 'ATTACK;HEAL:ADD:1:3' # Activate on Attack
          - 'KILL;DROP_HEAD:TARGET' # Activate on Kill
          - 'MESSAGE:Can be activated on both:PLAYER'

Last updated