aboutsummaryrefslogtreecommitdiff
path: root/src/gamedata.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/gamedata.rs')
-rw-r--r--src/gamedata.rs9
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}")]