java.lang.Object
net.minestom.server.event.entity.EntityDamageEvent
- All Implemented Interfaces:
Event
,CancellableEvent
,EntityEvent
,EntityInstanceEvent
,InstanceEvent
-
Constructor Summary
ConstructorsConstructorDescriptionEntityDamageEvent
(LivingEntity entity, Damage damage, @Nullable SoundEvent sound) -
Method Summary
Modifier and TypeMethodDescriptionGets the damage type.Gets the entity of this event.@Nullable SoundEvent
getSound()
Gets the damage sound.boolean
Gets if theEvent
should be cancelled or not.void
setAnimation
(boolean animation) Sets whether the damage animation should be played.void
setCancelled
(boolean cancel) Marks theEvent
as cancelled or not.void
setSound
(@Nullable SoundEvent sound) Changes the damage sound.boolean
Gets whether the damage animation should be played.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minestom.server.event.trait.EntityInstanceEvent
getInstance
-
Constructor Details
-
EntityDamageEvent
-
-
Method Details
-
getEntity
Description copied from interface:EntityEvent
Gets the entity of this event.- Specified by:
getEntity
in interfaceEntityEvent
- Returns:
- the entity
-
getDamage
Gets the damage type.- Returns:
- the damage type
-
getSound
Gets the damage sound.- Returns:
- the damage sound
-
setSound
Changes the damage sound.- Parameters:
sound
- the new damage sound
-
shouldAnimate
public boolean shouldAnimate()Gets whether the damage animation should be played.- Returns:
- true if the animation should be played
-
setAnimation
public void setAnimation(boolean animation) Sets whether the damage animation should be played.- Parameters:
animation
- whether the animation should be played or not
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableEvent
Gets if theEvent
should be cancelled or not.- Specified by:
isCancelled
in interfaceCancellableEvent
- Returns:
- true if the event should be cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableEvent
Marks theEvent
as cancelled or not.- Specified by:
setCancelled
in interfaceCancellableEvent
- Parameters:
cancel
- true if the event should be cancelled, false otherwise
-