🤯Implosion
Creates a fake explosion in x radius with x amount of damage
Overview
Method
public static void create(Location center, double radius, double damage)Parameters
// Define the central location for the implosion
Location center = new Location(world, x, y, z);
// Define the radius of the implosion effect
double radius = 5.0;
// Define the amount of damage inflicted by the implosion
double damage = 10.0;
// Create the implosion effect
Implosion.create(center, radius, damage);Notes
Last updated