2
1
Fork 1
mirror of https://github.com/ACGaming/Spackenmobs synced 2024-06-02 10:40:05 +02:00
Spackenmobs/src/main/java/mod/acgaming/spackenmobs/entities/EntityMarcellDAvis.java

29 lines
820 B
Java
Raw Normal View History

2020-08-09 17:46:58 +02:00
package mod.acgaming.spackenmobs.entities;
2020-08-23 10:30:02 +02:00
2020-08-14 19:24:29 +02:00
import mod.acgaming.spackenmobs.misc.ModSoundEvents;
2020-08-09 17:46:58 +02:00
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);
}
2020-08-23 10:30:02 +02:00
@Override
protected SoundEvent getAmbientSound() {
return ModSoundEvents.ENTITY_MARCELLDAVIS_AMBIENT;
}
2020-08-09 17:46:58 +02:00
@Override
protected SoundEvent getHurtSound(DamageSource damageSourceIn) {
return ModSoundEvents.ENTITY_MARCELLDAVIS_HURT;
}
2020-08-09 17:46:58 +02:00
@Override
protected SoundEvent getDeathSound() {
return ModSoundEvents.ENTITY_MARCELLDAVIS_DEATH;
}
2020-08-09 17:46:58 +02:00
}