All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 getEntity() {
    return (Golem) super.getEntity();
  }

  public void e(float f, float f1) {
  }

  protected String z() {
    return "none";
  }

  protected String bo() {
    return "none";
  }

  protected String bp() {
    return "none";
  }

  public int w() {
    return 120;
  }

  protected boolean isTypeNotPersistent() {
    return false;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy