Class CustomEntityDeathEvent

java.lang.Object
org.bukkit.event.Event
dev.lone.itemsadder.api.Events.CustomEntityDeathEvent

public class CustomEntityDeathEvent extends org.bukkit.event.Event
Event called when a custom entity is killed.
  • Nested Class Summary

    Nested classes/interfaces inherited from class org.bukkit.event.Event

    org.bukkit.event.Event.Result
  • Constructor Summary

    Constructors
    Constructor
    Description
    CustomEntityDeathEvent(org.bukkit.entity.Entity entity, Object internal)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.bukkit.entity.Entity
    Gets the Bukkit Entity associated with this CustomMob.
    static @NotNull org.bukkit.event.HandlerList
     
    @NotNull org.bukkit.event.HandlerList
     
    @Nullable org.bukkit.entity.Entity
    Gets the Bukkit Entity which killed the CustomMob.
    Gets the Namespace and ID in the format namespace:id for this CustomMob.

    Methods inherited from class org.bukkit.event.Event

    getEventName, isAsynchronous

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • CustomEntityDeathEvent

      public CustomEntityDeathEvent(org.bukkit.entity.Entity entity, Object internal)
  • Method Details

    • getHandlers

      @NotNull public @NotNull org.bukkit.event.HandlerList getHandlers()
      Specified by:
      getHandlers in class org.bukkit.event.Event
    • getHandlerList

      @NotNull public static @NotNull org.bukkit.event.HandlerList getHandlerList()
    • getNamespacedID

      public String getNamespacedID()
      Gets the Namespace and ID in the format namespace:id for this CustomMob.
      Returns:
      String representing the namespace and ID of the CustomMob.
    • getEntity

      public org.bukkit.entity.Entity getEntity()
      Gets the Bukkit Entity associated with this CustomMob.
      Returns:
      The Bukkit Entity associated with the CustomMob.
    • getKiller

      @Nullable public @Nullable org.bukkit.entity.Entity getKiller()
      Gets the Bukkit Entity which killed the CustomMob.
      Returns:
      Possibly-null Bukkit Entity, it's very unlikely to be tho. It happens only if the CustomMob is misconfigured.