cn.nukkit.entity.mob.EntitySlime 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.item.Item;
import cn.nukkit.level.format.FullChunk;
import cn.nukkit.nbt.tag.CompoundTag;
/**
* @author PikyCZ
*/
public class EntitySlime extends EntityMob {
public static final int NETWORK_ID = 37;
@Override
public int getNetworkId() {
return NETWORK_ID;
}
public EntitySlime(FullChunk chunk, CompoundTag nbt) {
super(chunk, nbt);
}
@Override
protected void initEntity() {
super.initEntity();
this.setMaxHealth(16);
}
@Override
public float getWidth() {
return 2.04f;
}
@Override
public float getHeight() {
return 2.04f;
}
@Override
public String getName() {
return "Slime";
}
@Override
public Item[] getDrops() {
return new Item[]{Item.get(Item.SLIMEBALL)};
}
}