2
1
Fork 1
mirror of https://github.com/ACGaming/Spackenmobs synced 2024-06-02 18:49:45 +02:00
Spackenmobs/src/main/java/mod/acgaming/spackenmobs/entities/EntityApoRed.java
ACGaming 68b777bffb Auto-formatting "fix" and additional stuff
Adapt auto-formatting to own weird style
Re-added missing Jens AI and loot
Fixed creative tab
2020-08-23 15:38:40 +02:00

33 lines
706 B
Java

package mod.acgaming.spackenmobs.entities;
import mod.acgaming.spackenmobs.misc.ModSoundEvents;
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);
}
@Override
protected SoundEvent getAmbientSound()
{
return ModSoundEvents.ENTITY_APORED_AMBIENT;
}
@Override
protected SoundEvent getHurtSound(DamageSource damageSourceIn)
{
return ModSoundEvents.ENTITY_APORED_HURT;
}
@Override
protected SoundEvent getDeathSound()
{
return ModSoundEvents.ENTITY_APORED_DEATH;
}
}