#[non_exhaustive]
#[repr(u16)]
pub enum Boss {
Show 47 variants
ValeGuardian,
Gorseval,
Sabetha,
Slothasor,
Berg,
Zane,
Narella,
Matthias,
KeepConstruct,
Xera,
Xera2,
Cairn,
MursaatOverseer,
Samarog,
Deimos,
SoullessHorror,
BrokenKing,
EaterOfSouls,
EyeOfJudgment,
EyeOfFate,
Dhuum,
ConjuredAmalgamate,
Nikare,
Kenut,
Qadim,
CardinalAdina,
CardinalSabir,
QadimThePeerless,
StandardKittyGolem,
MediumKittyGolem,
LargeKittyGolem,
Ai,
Skorvald,
Artsariiv,
Arkk,
MAMA,
Siax,
Ensolyss,
IcebroodConstruct,
VoiceOfTheFallen,
ClawOfTheFallen,
FraenirOfJormag,
Boneskinner,
WhisperOfJormag,
CaptainMaiTrin,
Ankka,
MinisterLi,
}Expand description
Enum containing all boss IDs.
For a high-level event categorization, take a look at the Encounter enum. The IDs listed
here are for a more fine-grained control, e.g. if you specifically need to differentiate
between Nikare and Kenut in the Twin Largos encounter.
This enum is non-exhaustive to ensure that future bosses can be added without inducing a breaking change.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
ValeGuardian
Vale Guardian, first boss of Spirit Vale.
Gorseval
Gorseval, second boss of Spirit Vale.
Sabetha
Sabetha, third boss of Spirit Vale.
Slothasor
Slothasor, first boss of Salvation Pass.
Berg
Berg, part of the “Bandit Trio” encounter.
Zane
Zane, part of the “Bandit Trio” encounter.
Narella
Narella, part of the “Bandit Trio” encounter.
Matthias
Matthias, third boss of Salvation Pass.
KeepConstruct
Keep Construct, second boss of the Stronghold of the Faithful.
Xera
Xera, third boss of the Stronghold of the Faithful.
Xera2
ID for Xera in the second phase.
The original Xera will despawn, and after the tower phase, a separate spawn will take over.
This new Xera will have Boss::Xera2 as ID. Care needs to be taken when calculating boss
damage on this encounter, as both Xeras have to be taken into account.
Cairn
Cairn, first boss of the Bastion of the Penitent.
MursaatOverseer
Mursaat Overseer, second boss of the Bastion of the Penitent.
Samarog
Samarog, third boss of the Bastion of the Penitent.
Deimos
Deimos, fourth boss of the Bastion of the Penitent.
SoullessHorror
Soulless Horror, first boss of the Hall of Chains.
BrokenKing
Broken King, part of the Statues of Grenth event in the Hall of Chains.
EaterOfSouls
Eater of Souls, part of the Statues of Grenth event in the Hall of Chains.
EyeOfJudgment
The Eye of Judgment, part of the Statue of Darkness event in the Hall of Chains.
EyeOfFate
The Eye of Fate, part of the Statue of Darkness event in the Hall of Chains.
Dhuum
Dhuum, second boss of the Hall of Chains.
The encounter to this boss is called Voice in the Void.
ConjuredAmalgamate
Conjured Amalgamate, first boss of Mythwright Gambit.
Nikare
Nikare, part of the Twin Largos encounter in Mythwright Gamit.
Kenut
Kenut, part of the Twin Largos encounter in Mythwright Gamit.
Qadim
Qadim, third boss in Mythwright Gambit.
CardinalAdina
Cardinal Adina, one of the first two bosses in the Key of Ahdashim.
CardinalSabir
Cardinal Sabir, one of the first two bosses in the Key of Ahdashim.
QadimThePeerless
Qadim the Peerless, third boss in the Key of Ahdashim.
StandardKittyGolem
The standard training golem, available in the Special Forces Training Area.
MediumKittyGolem
The medium training golem, available in the Special Forces Training Area.
LargeKittyGolem
The large kitty golem available in the Special Forces Training Area.
Ai
Ai, Keeper of the Peak, boss of the Sunqua Peak CM fractal.
Skorvald
Skorvald the Shattered, first boss in the Shattered Observatory.
Artsariiv
Artsariiv, second boss in the Shattered Observatory CM.
Arkk
Arkk, third boss in the Shattered Observatory.
MAMA
MAMA, first boss in the Nightmare CM fractal.
Siax
Siax the Corrupted, second boss in the Nightmare CM fractal.
Ensolyss
Ensolyss of the Endless Torment, third boss in the Nightmare CM fractal.
IcebroodConstruct
Legendary Icebrood Construct, boss of the Shiverpeaks Pass strike mission.
VoiceOfTheFallen
The Voice of the Fallen, part of the Voice of the Fallen and Claw of the Fallen strike mission.
ClawOfTheFallen
The Claw of the Fallen, part of the Voice of the Fallen and Claw of the Fallen strike mission.
FraenirOfJormag
The Fraenir of Jormag, boss of the Fraenir of Jormag strike mission.
Boneskinner
The Boneskinner, boss of the Boneskinner strike mission.
WhisperOfJormag
The Whisper of Jormag, boss of the Whisper of Jormag strike mission.
CaptainMaiTrin
Captain Mai Trin, boss of the Aetherblade Hideout strike mission.
Ankka
Ankka, boss in the Xunlai Jade Junkyard.
MinisterLi
Minister Li, boss in the Kaineng Overlook.
Implementations
Trait Implementations
sourceimpl FromPrimitive for Boss
impl FromPrimitive for Boss
sourcefn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
Converts an i64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
Converts an u64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
Converts an isize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
Converts an i8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
Converts an i16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
Converts an i32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_i128(n: i128) -> Option<Self>
fn from_i128(n: i128) -> Option<Self>
Converts an i128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
Converts a usize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
Converts an u8 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_u16(n: u16) -> Option<Self>
fn from_u16(n: u16) -> Option<Self>
Converts an u16 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_u32(n: u32) -> Option<Self>
fn from_u32(n: u32) -> Option<Self>
Converts an u32 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
sourcefn from_u128(n: u128) -> Option<Self>
fn from_u128(n: u128) -> Option<Self>
Converts an u128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read more
impl Copy for Boss
impl Eq for Boss
impl StructuralEq for Boss
impl StructuralPartialEq for Boss
Auto Trait Implementations
impl RefUnwindSafe for Boss
impl Send for Boss
impl Sync for Boss
impl Unpin for Boss
impl UnwindSafe for Boss
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more