aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gamedata.rs3
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),
}