Package dev.lone.itemsadder.api
Class CustomMob
java.lang.Object
dev.lone.itemsadder.api.CustomMob
Class representing a custom mob in ItemsAdder
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable CustomMob
byAlreadySpawned
(org.bukkit.entity.Entity entity) Gets a CustomMob instance through a Bukkit Entity.org.bukkit.entity.Entity
Gets the Bukkit Entity associated with this CustomMob.getId()
Gets the ID of this CustomMob.getName()
Gets the name of this CustomMob.Gets the Namespace for this CustomMob.Gets the Namespace and ID in the formatnamespace:id
for this CustomMob.org.bukkit.entity.EntityType
getType()
Gets the Bukkit EntityType associated with this CustomMob.static @Nullable CustomMob
Spawns a CustomMob and returns the created CustomMob instance, or null if Namespace and ID are invalid.
-
Constructor Details
-
CustomMob
public CustomMob()
-
-
Method Details
-
spawn
@Nullable public static @Nullable CustomMob spawn(String namespacedId, org.bukkit.Location location) Spawns a CustomMob and returns the created CustomMob instance, or null if Namespace and ID are invalid.- Parameters:
namespacedId
- Namespace and ID in the formatnamespace:id
to get the CustomMob from.location
- the Location to spawn the CustomMob at.- Returns:
- Possibly-null CustomMob instance.
-
byAlreadySpawned
Gets a CustomMob instance through a Bukkit Entity.
This returns null if the provided Entity doesn't belong to a CustomMob. // TODO: Check if that is correct- Parameters:
entity
- The Bukkit Entity to get the CustomMob from.- Returns:
- Possibly-null CustomMob instance.
-
getEntity
public org.bukkit.entity.Entity getEntity()Gets the Bukkit Entity associated with this CustomMob.- Returns:
- The Bukkit Entity associated with the CustomMob.
-
getType
public org.bukkit.entity.EntityType getType()Gets the Bukkit EntityType associated with this CustomMob.- Returns:
- The Bukkit EntityType associated with the CustomMob.
-
getNamespacedID
Gets the Namespace and ID in the formatnamespace:id
for this CustomMob.- Returns:
- String representing the namespace and ID of the CustomMob.
-
getNamespace
Gets the Namespace for this CustomMob.- Returns:
- String representing the namespace of the CustomMob.
-
getName
Gets the name of this CustomMob.- Returns:
- String representing the name of the CustomMob.
-
getId
Gets the ID of this CustomMob.- Returns:
- String representing the ID of the CustomMob.
-