类 LivingAttackEvent

java.lang.Object
net.minecraftforge.eventbus.api.Event

public class LivingAttackEvent extends LivingEvent
LivingAttackEvent is fired when a living Entity is attacked.
This event is fired whenever an Entity is attacked in Entity.hurt(DamageSource, float) and Entity.hurt(DamageSource, float).

This event is fired via the ForgeHooks.onLivingAttack(LivingEntity, DamageSource, float).

source contains the DamageSource of the attack.
amount contains the amount of damage dealt to the entity.

This event is Cancelable.
If this event is canceled, the Entity does not take attack damage.

This event does not have a result. Event.HasResult

This event is fired on the MinecraftForge.EVENT_BUS.
  • 字段详细资料

    • source

      private final DamageSource source
    • amount

      private final float amount
  • 构造器详细资料

  • 方法详细资料

    • getSource

      public DamageSource getSource()
    • getAmount

      public float getAmount()