cn.nukkit.entity.mob.EntityHoglin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.entity.mob;
import cn.nukkit.api.Since;
import cn.nukkit.level.format.FullChunk;
import cn.nukkit.nbt.tag.CompoundTag;
/**
* @author Erik Miller | EinBexiii
*/
@Since("1.3.1.0-PN")
public class EntityHoglin extends EntityMob {
public final static int NETWORK_ID = 124;
@Override
public int getNetworkId() {
return NETWORK_ID;
}
public EntityHoglin(FullChunk chunk, CompoundTag nbt) {
super(chunk, nbt);
}
@Override
protected void initEntity() {
super.initEntity();
this.setMaxHealth(40);
}
@Override
public float getWidth() {
return 0.9f;
}
@Override
public float getHeight() {
return 0.9f;
}
@Override
public String getName() {
return "Hoglin";
}
}