diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gamedata.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gamedata.rs b/src/gamedata.rs index cac6518..4fe8fa6 100644 --- a/src/gamedata.rs +++ b/src/gamedata.rs @@ -68,6 +68,7 @@ impl Boss { match self { Boss::KeepConstruct => CmTrigger::Unknown, + Boss::Cairn => CmTrigger::BuffPresent(38_098), Boss::MursaatOverseer => CmTrigger::HpThreshold(30_000_000), Boss::Samarog => CmTrigger::HpThreshold(40_000_000), Boss::Deimos => CmTrigger::HpThreshold(42_000_000), @@ -180,7 +181,7 @@ pub enum CmTrigger { BuffPresent(u32), /// The time between buff applications falls below the given threshold. /// - /// The first number is the buff id, the second number is the time threshold. + /// The first number is the buff id, the second number is the time threshold in milliseconds. TimeBetweenBuffs(u32, u64), } |