Particle System

There is a particle system in AetherPotions that can summon particles for those who consumed the said potion.

Particle feature is completely optional, you don't need to configure it. Just disable it and go on.

Particle list can be found in here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Particle.html

Variable
Description
Example/Expected Value

enabled

Whether it is enabled or not.

true/false

type

Type of particle list. Can be found on url above.

END_ROD

time

Time in seconds.

200

amount

Particle amount per second. You have to try and test this setting.

20

Our updated configuration:

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

Last updated