From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Ineusia Date: Mon, 26 Oct 2020 11:37:48 -0500 Subject: [PATCH] Add Destroy Speed API Co-authored-by: Jake Potrebic diff --git a/src/main/java/org/bukkit/block/Block.java b/src/main/java/org/bukkit/block/Block.java index e7957ec1727f7483d6d75b9e94333f06dc6d1da2..cc570b31e817433d6e90990277cce283ee5d449e 100644 --- a/src/main/java/org/bukkit/block/Block.java +++ b/src/main/java/org/bukkit/block/Block.java @@ -620,5 +620,29 @@ public interface Block extends Metadatable, net.kyori.adventure.translation.Tran @NotNull @Deprecated String getTranslationKey(); + + /** + * Gets the speed at which this block will be destroyed by a given {@link ItemStack} + * + *

Default value is 1.0

+ * + * @param itemStack {@link ItemStack} used to mine this Block + * @return the speed that this Block will be mined by the given {@link ItemStack} + */ + @NotNull + public default float getDestroySpeed(@NotNull ItemStack itemStack) { + return getDestroySpeed(itemStack, false); + } + + /** + * Gets the speed at which this blook will be destroyed by a given {@link org.bukkit.inventory.ItemStack} + *

+ * Default value is 1.0 + * @param itemStack {@link org.bukkit.inventory.ItemStack} used to mine this Block + * @param considerEnchants true to look at enchants on the itemstack + * @return the speed that this Block will be mined by the given {@link org.bukkit.inventory.ItemStack} + */ + @NotNull + float getDestroySpeed(@NotNull ItemStack itemStack, boolean considerEnchants); // Paper end }