
net.minecraft.server.EntityGolem Maven / Gradle / Ivy
package net.minecraft.server;
import org.bukkit.entity.Golem;
import org.jetbrains.annotations.NotNull;
public abstract class EntityGolem extends EntityCreature implements IAnimal {
public EntityGolem(World world) {
super(world);
}
@NotNull
@Override
public Golem getEntityBukkit() {
return (Golem) super.getEntityBukkit();
}
public void fall(float f, float f1) {
}
protected String getLivingSound() {
return "none";
}
protected String getHurtSound() {
return "none";
}
protected String getDeathSound() {
return "none";
}
public int getTalkInterval() {
return 120;
}
protected boolean isTypeNotPersistent() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy