cn.nukkit.entity.passive.EntitySkeletonHorse 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.entity.EntitySmite;
import cn.nukkit.item.Item;
import cn.nukkit.level.format.FullChunk;
import cn.nukkit.nbt.tag.CompoundTag;
/**
* @author PikyCZ
*/
public class EntitySkeletonHorse extends EntityAnimal implements EntitySmite {
public static final int NETWORK_ID = 26;
public EntitySkeletonHorse(FullChunk chunk, CompoundTag nbt) {
super(chunk, nbt);
}
@Override
public int getNetworkId() {
return NETWORK_ID;
}
@Override
public float getWidth() {
return 1.4f;
}
@Override
public float getHeight() {
return 1.6f;
}
@Override
public void initEntity() {
super.initEntity();
this.setMaxHealth(15);
}
@Override
public Item[] getDrops() {
return new Item[]{Item.get(Item.BONE)};
}
@Override
public boolean isUndead() {
return true;
}
}