Particle Cloud Effect - TheComputerGeek2/MagicSpells GitHub Wiki

Source Code

effect: particlecloud

Description:

Creates a cloud of particles.

Configuration:

Extends configuration from the Particles Effect. Since 4.0 Beta 13 these options support dynamic values through numeric or string expressions.

Option Description Type Default
color Defines the color of the particle cloud for the particles that support it. Since 4.0 Beta 17 argb-color may be used instead from the inherited particles spell effect options. Integer 0xff0000
duration Defines how long the cloud should last (in ticks). Integer 60
y-offset The starting y offset of the effect. Float 0
radius The initial radius for the cloud. Float 5
radius-per-tick Defines how much bigger the radius should get for every tick. Float 0
wait-time Since 4.0 Beta 17. Defines the wait time before the cloud is applied. During this time, the particles only spawn at the center of the cloud. Integer 0

Example:

cloud:
    spell-class: .instant.DummySpell
    effects:
        1:
            position: caster
            effect: particlecloud
            duration: 200
            radius-per-tick: 0.1