From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Jake Potrebic <jake.m.potrebic@gmail.com>
Date: Wed, 18 Nov 2020 11:32:15 -0800
Subject: [PATCH] Zombie API - breaking doors


diff --git a/src/main/java/org/bukkit/entity/Zombie.java b/src/main/java/org/bukkit/entity/Zombie.java
index 1217576e6f08abf0175ab800cfca058d5deda116..6eeab75e985ece3fb606551bc42b05f958da4d60 100644
--- a/src/main/java/org/bukkit/entity/Zombie.java
+++ b/src/main/java/org/bukkit/entity/Zombie.java
@@ -140,5 +140,32 @@ public interface Zombie extends Monster, Ageable {
      * @param shouldBurnInDay True to burn in sunlight
      */
     void setShouldBurnInDay(boolean shouldBurnInDay);
+
+    /**
+     * Check if this zombie can break doors
+     *
+     * @return True if zombie can break doors
+     */
+    boolean canBreakDoors();
+
+    /**
+     * Sets if this zombie can break doors.
+     * Check {@link #supportsBreakingDoors()} to see
+     * if this zombie type will even be affected by using
+     * this method.
+     *
+     * @param canBreakDoors True if zombie can break doors
+     */
+    void setCanBreakDoors(boolean canBreakDoors);
+
+    /**
+     * Checks if this zombie type supports breaking doors.
+     * {@link Drowned} do not have support for breaking doors
+     * so using {@link #setCanBreakDoors(boolean)} on them has
+     * no effect.
+     *
+     * @return
+     */
+    boolean supportsBreakingDoors();
     // Paper end
 }