cn.nukkit.entity.passive.EntitySalmon 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 PetteriM1
*/
public class EntitySalmon extends EntityAnimal {
public static final int NETWORK_ID = 109;
public EntitySalmon(FullChunk chunk, CompoundTag nbt) {
super(chunk, nbt);
}
@Override
public int getNetworkId() {
return NETWORK_ID;
}
public String getName() {
return "Salmon";
}
@Override
public float getWidth() {
return 0.5f;
}
@Override
public float getHeight() {
return 0.5f;
}
@Override
public void initEntity() {
super.initEntity();
this.setMaxHealth(3);
}
}