Class EventBridge.DownedBossEvent
Event triggered when a boss is downed.
public record EventBridge.DownedBossEvent : Event<EventBridge.DownedBossEvent>, IEvent, IEquatable<Event>, IEquatable<Event<EventBridge.DownedBossEvent>>, IEquatable<EventBridge.DownedBossEvent>
- Inheritance
-
EventBridge.DownedBossEvent
- Implements
- Inherited Members
- Extension Methods
Constructors
DownedBossEvent(List<EntityDamageEntry>, Entity, DownedEvent)
Event triggered when a boss is downed.
public DownedBossEvent(List<EntityDamageEntry> DamageEntries, Entity TargetEntity, DownedEvent NativeEvent)
Parameters
DamageEntries
List<EntityDamageEntry>List of damage entries associated with the downing event.
TargetEntity
EntityThe entity that was downed.
NativeEvent
DownedEventThe native downed event that triggered this event.
Properties
DamageEntries
List of damage entries associated with the downing event.
public List<EntityDamageEntry> DamageEntries { get; init; }
Property Value
NativeEvent
The native downed event that triggered this event.
public DownedEvent NativeEvent { get; init; }
Property Value
- DownedEvent
TargetEntity
The entity that was downed.
public Entity TargetEntity { get; init; }
Property Value
- Entity