Uses of Package
net.neoforged.neoforge.event.entity.living
Package
Description
Events fired only on the client-side, chiefly related to rendering and user interfaces (screens and input).
-
ClassDescriptionLivingConversionEvent.Post is triggered when an entity is replacing itself with another entity.
-
ClassDescriptionLivingEvent is fired whenever an event involving a
LivingEntity
occurs.
If a method utilizes thisEvent
as its parameter, the method will receive every child event of this class.
All children of this event are fired on theNeoForge.EVENT_BUS
. -
ClassDescriptionThis event allows you to change the target an entity has.A living target type indicates what kind of system caused a change of targets.LivingKnockBackEvent is fired when a living entity is about to be knocked back.This event is fired when a living entity is about to swap the items in their main and offhand.The ShieldBlockEvent is fired when an entity successfully blocks with a shield.
Cancelling this event will have the same impact as if the shield was not eligible to block.
The damage blocked cannot be set lower than zero or greater than the original value.
Note: The shield item stack "should" be available fromLivingEntity.getUseItem()
at least for players. -
ClassDescriptionThis event is fired before
Mob.finalizeSpawn(net.minecraft.world.level.ServerLevelAccessor, net.minecraft.world.DifficultyInstance, net.minecraft.world.entity.MobSpawnType, net.minecraft.world.entity.SpawnGroupData)
is called.
This allows mods to control mob initialization.
In vanilla code, this event is injected by a transformer and not via patch, so calls cannot be traced via call hierarchy (it is not source-visible).LivingEvent is fired whenever an event involving aLivingEntity
occurs.
If a method utilizes thisEvent
as its parameter, the method will receive every child event of this class.
All children of this event are fired on theNeoForge.EVENT_BUS
.This event is fired whenever a mob is removed and splits into multiple children. -
ClassDescriptionLivingEvent is fired whenever an event involving a
LivingEntity
occurs.
If a method utilizes thisEvent
as its parameter, the method will receive every child event of this class.
All children of this event are fired on theNeoForge.EVENT_BUS
. -
ClassDescriptionA living target type indicates what kind of system caused a change of targets.This enum contains two default living target types.LivingEvent is fired whenever an event involving a
LivingEntity
occurs.
If a method utilizes thisEvent
as its parameter, the method will receive every child event of this class.
All children of this event are fired on theNeoForge.EVENT_BUS
.This event is fired when an interaction between aLivingEntity
andMobEffectInstance
happens.This class holds all events relating to the entire flow of mob spawns.
Currently, the events have the following flow for any given mob spawn: -
ClassDescriptionLivingEvent is fired whenever an event involving a
LivingEntity
occurs.
If a method utilizes thisEvent
as its parameter, the method will receive every child event of this class.
All children of this event are fired on theNeoForge.EVENT_BUS
. -
ClassDescriptionLivingEvent is fired whenever an event involving a
LivingEntity
occurs.
If a method utilizes thisEvent
as its parameter, the method will receive every child event of this class.
All children of this event are fired on theNeoForge.EVENT_BUS
. -
ClassDescriptionThis event is fired when a new
MobEffectInstance
is added to an entity.This event is fired to check if aMobEffectInstance
can be applied to an entity.This event is fired when aMobEffectInstance
expires on an entity.This Event is fired when aMobEffect
is about to get removed from an Entity.