diff options
author | Daniel Schadt <kingdread@gmx.de> | 2020-07-23 17:18:56 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2020-07-23 17:18:56 +0200 |
commit | dcf1b948b953fb17db16eafcdd30f0a25301171f (patch) | |
tree | fda74e152d9354c22ed1d7fe1e3d89a3b3a3cc32 /src/gamedata.rs | |
parent | 4c02181067e789e41eb95c6f6e954e4de6277dc1 (diff) | |
download | evtclib-dcf1b948b953fb17db16eafcdd30f0a25301171f.tar.gz evtclib-dcf1b948b953fb17db16eafcdd30f0a25301171f.tar.bz2 evtclib-dcf1b948b953fb17db16eafcdd30f0a25301171f.zip |
implement Analyzer::outcome for wing 6
Diffstat (limited to 'src/gamedata.rs')
-rw-r--r-- | src/gamedata.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gamedata.rs b/src/gamedata.rs index dd11e94..5e83167 100644 --- a/src/gamedata.rs +++ b/src/gamedata.rs @@ -39,6 +39,10 @@ pub enum Boss { // Wing 6 ConjuredAmalgamate = 0xABC6, + /// This is the ID of Nikare, as that is what the Twin Largos logs are identified by. + /// + /// If you want Nikare specifically, consider using [`NIKARE_ID`][NIKARE_ID], and similarly, if + /// you need Kenut, you can use [`KENUT_ID`][KENUT_ID]. LargosTwins = 0x5271, Qadim = 0x51C6, @@ -167,6 +171,11 @@ impl Display for Boss { /// into account. pub const XERA_PHASE2_ID: u16 = 0x3F9E; +/// The ID of Nikare in the Twin Largos fight. +pub const NIKARE_ID: u16 = Boss::LargosTwins as u16; +/// The ID of Kenut in the Twin Largos fight. +pub const KENUT_ID: u16 = 21089; + /// Error for when converting a string to a profession fails. #[derive(Debug, Clone, PartialEq, Eq, Hash, Error)] #[error("Invalid profession identifier: {0}")] |