Spackenmobs/src/main/java/mod/acgaming/spackenmobs/entities/EntityMrBean.java
LordMZTE 484236b477 massive cleanup
damn this code was shit
2020-08-29 17:36:56 +02:00

29 lines
790 B
Java

package mod.acgaming.spackenmobs.entities;
import mod.acgaming.spackenmobs.misc.ModSoundEvents;
import net.minecraft.entity.monster.EntityZombie;
import net.minecraft.util.DamageSource;
import net.minecraft.util.SoundEvent;
import net.minecraft.world.World;
public class EntityMrBean extends EntityZombie {
public EntityMrBean(World worldIn) {
super(worldIn);
this.setSize(0.6F, 1.95F);
}
@Override
protected SoundEvent getAmbientSound() {
return ModSoundEvents.ENTITY_MRBEAN_AMBIENT;
}
@Override
protected SoundEvent getHurtSound(DamageSource damageSourceIn) {
return ModSoundEvents.ENTITY_MRBEAN_HURT;
}
@Override
protected SoundEvent getDeathSound() {
return ModSoundEvents.ENTITY_MRBEAN_DEATH;
}
}