Death

@Serializable
data class Death(val timestamp: Instant, val level: Int, val killers: List<DeathParticipant>, val assists: List<DeathParticipant>)(source)

A death by a Character.

Constructors

Link copied to clipboard
constructor(timestamp: Instant, level: Int, killers: List<DeathParticipant>, assists: List<DeathParticipant>)

Properties

Link copied to clipboard

The list of characters that assisted in the death without dealing damage.

Link copied to clipboard

Whether this death was caused by players.

Link copied to clipboard

The list of killers.

Link copied to clipboard
val level: Int

The level of the character when they died.

Link copied to clipboard
val timestamp: Instant

The date and time when the death happened.