cn.nukkit.entity.passive.EntityWolf 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.item.Item;
import cn.nukkit.level.format.FullChunk;
import cn.nukkit.nbt.tag.CompoundTag;
/**
* @author BeYkeRYkt (Nukkit Project)
*/
public class EntityWolf extends EntityAnimal {
public static final int NETWORK_ID = 14;
public EntityWolf(FullChunk chunk, CompoundTag nbt) {
super(chunk, nbt);
}
@Override
public float getWidth() {
return 0.6f;
}
@Override
public float getHeight() {
return 0.8f;
}
@Override
public String getName() {
return "Wolf";
}
@Override
public int getNetworkId() {
return NETWORK_ID;
}
@Override
public void initEntity() {
super.initEntity();
this.setMaxHealth(8);
}
@Override
public boolean isBreedingItem(Item item) {
return false; //only certain food
}
}