Skip to main content
Manipulate the physical world and player movement.

⚙️ Configuration

set_velocity_action

Launch the player in a specific direction.
x
Double
default:"0.0"
Velocity X.
y
Double
default:"0.0"
Velocity Y (Up/Down).
z
Double
default:"0.0"
Velocity Z.

create_explosion_action

Spawn a calibrated explosion.
power
Float
default:"4.0"
TNT equivalent power.
fire
Boolean
default:"false"
Should it create fire?
breakBlocks
Boolean
default:"false"
Should it destroy terrain?

spawn_lightning_action

Strike lightning at the player’s location.
damage
Boolean
default:"true"
Should it deal damage?

launch_firework_action

Spawn a decorative firework.
type
Enum
default:"BALL"
Shape (BALL, STAR, BURST, CREEPER, LARGE_BALL).
color
Color
default:"RED"
Primary color.
flicker
Boolean
default:"false"
Add flicker effect.

💻 Example Usage

set_velocity_action:
  x: 0.0
  y: 1.5
  z: 0.0