wowlab_engine_domain/constants.rs
1//! Shared gameplay constants.
2
3/// Baseline crit chance fraction (0.05) granted to every player before any rating.
4pub const BASE_CRIT_CHANCE: f64 = 0.05;
5
6/// Off-hand attacks deal half their otherwise-computed damage.
7pub const OFF_HAND_DAMAGE_MULT: f64 = 0.5;
8
9/// Pandemic refresh threshold as a fraction of base duration.
10pub const AURA_PANDEMIC_THRESHOLD: f64 = wowlab_buffer_contract::PANDEMIC_REFRESH_FRACTION;
11
12/// The `$rolemult` tooltip variable (0.66) for tank/healer specs; does not affect max health.
13pub const TANK_HEALER_ROLE_MULT: f64 = 0.66;