πŸ’Custom Potion Structure

In AetherPotions, nearly every parameter of the potion is customizable. Every section of potions are on separate page under this category. In each page, we will progressively update the configuration according to the features.

But if you want complete example configuration without wasting much time, here it is.

# Custom flight potion example by @nichoooooooo.
flight:
  displayName: '&6Flight Potion'
  lore:
    - '&9Food & Drinks'
    - '&9Flight I (04:00)'
  isSplash: false
  deleteBottle: false
  instantDrink: false
  cooldown: 480
  data:
    potionType: LUCK
  particle:
    enabled: true
    type: EFFECT
    time: 240
    amount: 50
  commands:
    afterEffect:
      enabled: true
      time: 240
      commands:
        '1':
          commands:
            - fly %player% disable
            - w %player% You're starting to feel pretty normal again. Perhaps another potion?
          executor: CONSOLE
    drinkingCommands:
      '1':
        commands: 
          - fly %player% enable
          - w %player% You get this whimsical feeling flowing through your body.. you're glowing.. and you can fly!!
          - effect give %player% minecraft:glowing 300
        executor: CONSOLE

Last updated