Particle (Power Type)

Spawns particles on the body of the entity that has the power for visual effects.

Spawns particles on the body of the entity that has the power for visual effects.

Type ID: apoli:particle

Unlike the original Apoli, this re-implementation spawns the particles server-side (via sendParticles per viewer), so the bientity_condition is evaluated on the server and every condition type works. The power-level condition field is also honored: while the condition is false, no particles spawn (fixed July 2026; the condition is checked once per frequency interval, so it adds no per-tick cost).

Fields

FieldTypeDefaultDescription
particleParticle EffectThe particle type that will be spawned.
bientity_conditionBi-entity Condition TypeoptionalIf specified, the particle will only be visible if this bi-entity condition is fulfilled by either or both the entity that has the power and the entity looking at the entity that has the power.
countInteger1Determines the amount of particles to spawn.
speedFloat0.0Determines the speed of the specified particle type.
forceBooleanfalseDetermines whether to display the emitted particles within 512 blocks (true) or 32 blocks (false).
spreadVector{"x": 0.5, "y": 0.5, "z": 0.5}Determines the size of the three-dimensional cuboid volume to spawn the specified particle type in.
offset_xFloat0.0The offset of where the particle will be centered in the X axis.
offset_yFloat0.5The offset of where the particle will be centered in the Y axis.
offset_zFloat0.0The offset of where the particle will be centered in the Z axis.
frequencyIntegerDetermines how often the particles should spawn (interval in ticks).
visible_in_first_personBooleanfalseDetermines whether the particle type should be visible in first person.
visible_while_invisibleBooleanfalseDetermines whether the particle type should be visible if the entity is invisible.

Examples

{
  	"type": "apoli:particle",
  	"particle": "minecraft:portal",
  	"frequency": 4
}

This example will continuously spawn portal particles on the entity that has the power.