public class ExplosionEvent extends Event implements Cancellable
Constructor and Description |
---|
ExplosionEvent(Vector3f position,
WorldItem item,
short damage,
Player relatedPlayer) |
Modifier and Type | Method and Description |
---|---|
short |
getNpcDamage()
Sets the amount of damage this explosion deals for npcs (e.g. animals).
|
short |
getPlayerDamage()
Gets the amount of damage this explosion deals for players.
|
Vector3f |
getPosition()
Gets the global world position of the explosion.
|
WorldItem |
getRelatedItem()
Gets the related item which caused this explosion (e.g. tnt).
|
Player |
getRelatedPlayer()
Gets the player who is responsible for this explosion.
|
short |
getWorldDamage()
Sets the amount of damage this explosion deals for world structures (i.e. buildings),
objects and vegetations.
|
boolean |
isCancelled()
Determines if the event is cancelled.
|
boolean |
isTriggerExplosivesEnabled()
Gets whether or not other explosives will be triggered by this explosion.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
void |
setNpcDamage(short damage)
Sets the amount of damage this explosion deals for npcs (e.g. animals).
|
void |
setPlayerDamage(short damage)
Sets the amount of damage this explosion deals for players.
|
void |
setPosition(float x,
float y,
float z)
Changes the global world position of the explosion.
|
void |
setPosition(Vector3f position)
Changes the global world position of the explosion.
|
void |
setTriggerExplosives(boolean set)
Sets whether or not this explosion should trigger other explosives.
|
void |
setWorldDamage(short damage)
Sets the amount of damage this explosion deals for world structures (i.e. buildings),
objects and vegetations.
|
public Vector3f getPosition()
public void setPosition(Vector3f position)
position
- the new position.public void setPosition(float x, float y, float z)
x
- the new x position.y
- the new y position.z
- the new z position.public WorldItem getRelatedItem()
public void setPlayerDamage(short damage)
damage
- the amount of damage (players).public short getPlayerDamage()
public void setNpcDamage(short damage)
damage
- the amount of damage (npcs).public short getNpcDamage()
public void setWorldDamage(short damage)
damage
- the amount of damage (world).public short getWorldDamage()
public void setTriggerExplosives(boolean set)
set
- true to trigger other explosives which are in proximity, false to
prevent this behaviour.public boolean isTriggerExplosivesEnabled()
public Player getRelatedPlayer()
public boolean isCancelled()
Cancellable
isCancelled
in interface Cancellable
public void setCancelled(boolean cancel)
Cancellable
setCancelled
in interface Cancellable
cancel
- set to true if you want to cancel this event.