Package dev.lone.itemsadder.api
Class CustomFire
java.lang.Object
dev.lone.itemsadder.api.CustomStack
dev.lone.itemsadder.api.CustomFire
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable CustomFire
byAlreadyPlaced
(org.bukkit.block.Block block) Gets a CustomFire instance through the provided block.static @Nullable CustomFire
byItemStack
(org.bukkit.inventory.ItemStack itemStack) int
getAge()
static int
getAge
(@NotNull org.bukkit.block.Block block) Gets the current age of this CustomFire.static @Nullable CustomFire
getInstance
(String namespacedID) @Nullable org.bukkit.Location
boolean
isPlaced()
static @Nullable CustomFire
Places a CustomFire at the provided location and return the CustomFire instance for it.place
(org.bukkit.Location location) boolean
remove()
static boolean
remove
(org.bukkit.Location location) Returns whether removing the CustomFire at the provided location was successful or not.void
setAge
(int age) static void
setAge
(@NotNull org.bukkit.block.Block block, int age) Sets the age of this CustomFire to the provided one.Methods inherited from class dev.lone.itemsadder.api.CustomStack
drop, getConfig, getConfigPath, getDamageMainhand, getDisplayName, getDurability, getId, getItemStack, getMaxDurability, getModelPath, getNamespace, getNamespacedID, getNamespacedIdsInRegistry, getPermission, getTextures, getUsages, hasAutoGeneratedModel, hasCustomDurability, hasPermission, hasUsagesAttribute, isBlock, isBlockAllEnchants, isInRegistry, matchNamespacedID, reduceUsages, setAttributeModifier, setDisplayName, setDurability, setMaxDurability, setUsages, updateAttackDamageLore, updateAttackSpeedLore
-
Constructor Details
-
CustomFire
public CustomFire()
-
-
Method Details
-
getInstance
-
byItemStack
-
place
@Nullable public static @Nullable CustomFire place(String namespacedId, org.bukkit.Location location) Places a CustomFire at the provided location and return the CustomFire instance for it.
May return null if the Namespace and ID are invalid.- Parameters:
namespacedId
- Namespace and ID in the formatnamespace:id
location
- The location to place the CustomFire at.- Returns:
- Possibly-null CustomFire instance.
-
byAlreadyPlaced
Gets a CustomFire instance through the provided block.
This may return null if the provided block is not a CustomFire.- Parameters:
block
- The block to get a CustomFire instance from.- Returns:
- Possibly-null CustomFire instance.
-
remove
public static boolean remove(org.bukkit.Location location) Returns whether removing the CustomFire at the provided location was successful or not.
A removal is successful if the Block at the provided location is an actual CustomFire.- Parameters:
location
- The location to remove the CustomFire from.- Returns:
- true if the CustomFire could be removed, otherwise false.
-
getAge
public static int getAge(@NotNull @NotNull org.bukkit.block.Block block) Gets the current age of this CustomFire.- Returns:
- Integer representing the current age of the CustomFire.
-
setAge
public static void setAge(@NotNull @NotNull org.bukkit.block.Block block, int age) Sets the age of this CustomFire to the provided one.- Parameters:
age
- the age to set for this CustomFire.
-
getLocation
@Nullable public @Nullable org.bukkit.Location getLocation() -
isPlaced
public boolean isPlaced() -
place
-
remove
public boolean remove() -
getAge
public int getAge() -
setAge
public void setAge(int age)
-