Package dev.lone.itemsadder.api
Class CustomFurniture
java.lang.Object
dev.lone.itemsadder.api.CustomStack
dev.lone.itemsadder.api.CustomFurniture
Class representing a CustomFurniture of ItemsAdder.
This class extends the
This class extends the
CustomStack
class.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable CustomFurniture
byAlreadySpawned
(org.bukkit.block.Block block) Gets a CustomFurniture instance from the provided Block.static @Nullable CustomFurniture
byAlreadySpawned
(org.bukkit.entity.Entity entity) Gets a CustomFurniture instance from the provided Armor stand.@Nullable org.bukkit.entity.Entity
Deprecated.@Nullable org.bukkit.entity.Entity
Gets the Armor stand associated with this CustomFurniture.Returns a list of all the registered furniture identifiers in the formatnamespace:id
int
Returns the original light level of this CustomFurniture.void
remove
(boolean dropItem) Removes this CustomFurniture and the Armor stand associated with it from the world.static void
remove
(org.bukkit.entity.Entity entity, boolean dropItem) Removes this CustomFurniture and the Armor stand associated with it from the world.void
replaceFurniture
(String newFurnitureNamespacedId) Replace the model of this furniture with the model of another furniture.void
replaceFurniture
(String newFurnitureNamespacedId, org.bukkit.Color color) Replace the model of this furniture with the model of another furniture.void
setColor
(org.bukkit.Color color) Replace color of this furniture.void
setCurrentLightLevel
(int level) Sets the current light level for this CustomFurniture.static @Nullable CustomFurniture
Spawns an Armor stand with the furniture of the provided namespace and ID at the provided Block location and returns a CustomFurniture instance for it.static @Nullable CustomFurniture
spawnPreciseNonSolid
(String namespacedId, org.bukkit.Location location) Spawns an Armor stand with the furniture of the provided namespace and ID at the provided location and returns a CustomFurniture instance for it.void
teleport
(org.bukkit.entity.Entity destinationEntity) Teleports the Armor stand associated with this CustomFurniture to the target Bukkit Entity.void
teleport
(org.bukkit.Location location) Teleports the Armor stand associated with this CustomFurniture to the provided location.Methods inherited from class dev.lone.itemsadder.api.CustomStack
byItemStack, drop, getConfig, getConfigPath, getDamageMainhand, getDisplayName, getDurability, getId, getInstance, getItemStack, getMaxDurability, getModelPath, getNamespace, getNamespacedID, getPermission, getTextures, getUsages, hasAutoGeneratedModel, hasCustomDurability, hasPermission, hasUsagesAttribute, isBlock, isBlockAllEnchants, isInRegistry, matchNamespacedID, reduceUsages, setAttributeModifier, setDisplayName, setDurability, setMaxDurability, setUsages, updateAttackDamageLore, updateAttackSpeedLore
-
Constructor Details
-
CustomFurniture
public CustomFurniture()
-
-
Method Details
-
getNamespacedIdsInRegistry
Returns a list of all the registered furniture identifiers in the formatnamespace:id
- Returns:
- a list of Namespaces and IDs in the format
namespace:id
-
byAlreadySpawned
Gets a CustomFurniture instance from the provided Armor stand.
This may return null if the Armor stand is not part of a furniture.- Parameters:
entity
- The Entity to get the CustomFurniture from.- Returns:
- Possibly-null instance of CustomFurniture
-
byAlreadySpawned
Gets a CustomFurniture instance from the provided Block.
This may return null if the Block is not part of a furniture hit-box.- Parameters:
block
- The Block to get the CustomFurniture from.- Returns:
- Possibly-null instance of CustomFurniture
-
spawnPreciseNonSolid
@Nullable public static @Nullable CustomFurniture spawnPreciseNonSolid(String namespacedId, org.bukkit.Location location) Spawns an Armor stand with the furniture of the provided namespace and ID at the provided location and returns a CustomFurniture instance for it.No Barrier block will be spawned if the CustomFurniture is solid!
- Parameters:
namespacedId
- Namespace and ID of the CustomFurniture in the formatnamespace:id
location
- The Location to spawn the Armor stand with the furniture at.- Returns:
- Possibly-null CustomFurniture instance.
-
spawn
@Nullable public static @Nullable CustomFurniture spawn(String namespacedId, org.bukkit.block.Block blockLocation) Spawns an Armor stand with the furniture of the provided namespace and ID at the provided Block location and returns a CustomFurniture instance for it.
This may return null if the provided namespace and ID are invalid.No Barrier block will be spawned if the CustomFurniture is solid!
- Parameters:
namespacedId
- Namespace and ID of the CustomFurniture in the formatnamespace:id
blockLocation
- The Block to spawn the Armor stand with the furniture at.- Returns:
- Possibly-null CustomFurniture instance.
-
remove
public void remove(boolean dropItem) Removes this CustomFurniture and the Armor stand associated with it from the world.- Parameters:
dropItem
- if an item should be dropped.
-
remove
public static void remove(org.bukkit.entity.Entity entity, boolean dropItem) Removes this CustomFurniture and the Armor stand associated with it from the world.- Parameters:
entity
- the Entity to remove with the CustomFurniture.dropItem
- if an item should be dropped.
-
teleport
public void teleport(org.bukkit.entity.Entity destinationEntity) Teleports the Armor stand associated with this CustomFurniture to the target Bukkit Entity.
This will also remove any Barrier blocks from its original position, if present.- Parameters:
destinationEntity
- the Bukkit Entity to teleport towards.
-
teleport
public void teleport(org.bukkit.Location location) Teleports the Armor stand associated with this CustomFurniture to the provided location.
This will also remove any Barrier blocks from its original position, if present.- Parameters:
location
- the location to teleport towards.
-
replaceFurniture
Replace the model of this furniture with the model of another furniture.- Parameters:
newFurnitureNamespacedId
- the namespace and ID of the new furniture model.
-
replaceFurniture
Replace the model of this furniture with the model of another furniture.- Parameters:
newFurnitureNamespacedId
- the namespace and ID of the new furniture model.color
- the new color of this furniture. Will apply only to naturally colorable items.
-
setColor
public void setColor(org.bukkit.Color color) Replace color of this furniture. Will apply only to naturally colorable items.- Parameters:
color
- the new color of this furniture. Will apply only to naturally colorable items.
-
getOriginalLightLevel
public int getOriginalLightLevel()Returns the original light level of this CustomFurniture.- Returns:
- Integer representing the original light level of the CustomFurniture.
-
setCurrentLightLevel
public void setCurrentLightLevel(int level) Sets the current light level for this CustomFurniture.- Parameters:
level
- The light level to set for this CustomFurniture.
-
getArmorstand
@Nullable public @Nullable org.bukkit.entity.Entity getArmorstand()Deprecated.usegetEntity()
instead.Gets the Armor stand associated with this CustomFurniture.
This may return null if the Armor stand is not yet spawned in the world.- Returns:
- Possibly-null Bukkit Entity instance.
-
getEntity
@Nullable public @Nullable org.bukkit.entity.Entity getEntity()Gets the Armor stand associated with this CustomFurniture.
This may return null if the Armor stand is not yet spawned in the world.- Returns:
- Possibly-null Bukkit Entity instance.
-
getEntity()
instead.