diff options
author | Daniel Schadt <kingdread@gmx.de> | 2020-09-15 15:06:55 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2020-09-15 15:06:55 +0200 |
commit | 24df15dbbb4967a96c6b3be4376f64be6126b686 (patch) | |
tree | c15522966b83f27decd7f2f4b7337f4acdc1f330 /src/gamedata.rs | |
parent | 440eac287eaad072e1cb1261dfe2cf1bcb9922b0 (diff) | |
download | evtclib-24df15dbbb4967a96c6b3be4376f64be6126b686.tar.gz evtclib-24df15dbbb4967a96c6b3be4376f64be6126b686.tar.bz2 evtclib-24df15dbbb4967a96c6b3be4376f64be6126b686.zip |
fix logs with Claw of the Fallen ID
Diffstat (limited to 'src/gamedata.rs')
-rw-r--r-- | src/gamedata.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gamedata.rs b/src/gamedata.rs index 5e83167..775cf30 100644 --- a/src/gamedata.rs +++ b/src/gamedata.rs @@ -63,6 +63,12 @@ pub enum Boss { // Strike missions IcebroodConstruct = 0x568A, + /// This is the ID of the Voice of the Fallen. + /// + /// The strike mission itself contains two bosses, the Voice of the Fallen and the Claw of the + /// Fallen. Consider using either [`VOICE_OF_THE_FALLEN_ID`][VOICE_OF_THE_FALLEN_ID] or + /// [`CLAW_OF_THE_FALLEN_ID`][CLAW_OF_THE_FALLEN_ID] if you refer to one of those bosses + /// specifically. VoiceOfTheFallen = 0x5747, FraenirOfJormag = 0x57DC, Boneskinner = 0x57F9, @@ -176,6 +182,11 @@ pub const NIKARE_ID: u16 = Boss::LargosTwins as u16; /// The ID of Kenut in the Twin Largos fight. pub const KENUT_ID: u16 = 21089; +/// The ID of the Voice of the Fallen. +pub const VOICE_OF_THE_FALLEN_ID: u16 = Boss::VoiceOfTheFallen as u16; +/// The ID of the Claw of the Fallen. +pub const CLAW_OF_THE_FALLEN_ID: u16 = 22481; + /// Error for when converting a string to a profession fails. #[derive(Debug, Clone, PartialEq, Eq, Hash, Error)] #[error("Invalid profession identifier: {0}")] |