forked from ACGaming/Spackenmobs
30 lines
No EOL
773 B
Java
30 lines
No EOL
773 B
Java
package mod.acgaming.spackenmobs.entities;
|
|
import mod.acgaming.spackenmobs.Spackenmobs;
|
|
import net.minecraft.entity.monster.EntityZombie;
|
|
import net.minecraft.util.DamageSource;
|
|
import net.minecraft.util.SoundEvent;
|
|
import net.minecraft.world.World;
|
|
|
|
public class EntityMarcellDAvis extends EntityZombie
|
|
{
|
|
public EntityMarcellDAvis(World worldIn)
|
|
{
|
|
super(worldIn);
|
|
this.setSize(0.6F, 1.95F);
|
|
}
|
|
|
|
protected SoundEvent getAmbientSound()
|
|
{
|
|
return Spackenmobs.ENTITY_MARCELLDAVIS_AMBIENT;
|
|
}
|
|
|
|
protected SoundEvent getHurtSound(DamageSource damageSourceIn)
|
|
{
|
|
return Spackenmobs.ENTITY_MARCELLDAVIS_HURT;
|
|
}
|
|
|
|
protected SoundEvent getDeathSound()
|
|
{
|
|
return Spackenmobs.ENTITY_MARCELLDAVIS_DEATH;
|
|
}
|
|
} |