cn.nukkit.entity.passive.EntityLlama 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.passive;
import cn.nukkit.level.format.FullChunk;
import cn.nukkit.nbt.tag.CompoundTag;
/**
* @author PikyCZ
*/
public class EntityLlama extends EntityAnimal {
public static final int NETWORK_ID = 29;
public EntityLlama(FullChunk chunk, CompoundTag nbt) {
super(chunk, nbt);
}
@Override
public int getNetworkId() {
return NETWORK_ID;
}
@Override
public float getWidth() {
if (this.isBaby()) {
return 0.45f;
}
return 0.9f;
}
@Override
public float getHeight() {
if (this.isBaby()) {
return 0.935f;
}
return 1.87f;
}
@Override
public float getEyeHeight() {
if (this.isBaby()) {
return 0.65f;
}
return 1.2f;
}
@Override
public void initEntity() {
super.initEntity();
this.setMaxHealth(15);
}
}