Spackenmobs/src/main/java/mod/acgaming/spackenmobs/entities/EntityApoRed.java

29 lines
735 B
Java
Raw Normal View History

2020-08-09 17:46:58 +02:00
package mod.acgaming.spackenmobs.entities;
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.EntitySkeleton;
import net.minecraft.util.DamageSource;
import net.minecraft.util.SoundEvent;
import net.minecraft.world.World;
public class EntityApoRed extends EntitySkeleton
{
public EntityApoRed(World worldIn)
{
super(worldIn);
}
protected SoundEvent getAmbientSound()
{
2020-08-14 19:24:29 +02:00
return ModSoundEvents.ENTITY_APORED_AMBIENT;
2020-08-09 17:46:58 +02:00
}
protected SoundEvent getHurtSound(DamageSource damageSourceIn)
{
2020-08-14 19:24:29 +02:00
return ModSoundEvents.ENTITY_APORED_HURT;
2020-08-09 17:46:58 +02:00
}
protected SoundEvent getDeathSound()
{
2020-08-14 19:24:29 +02:00
return ModSoundEvents.ENTITY_APORED_DEATH;
2020-08-09 17:46:58 +02:00
}
}