Const
Base stamina regeneration rate (stamina per second).
Korean: 기본 체력 재생 속도
This is the base rate at which stamina regenerates when not affected by combat state penalties, breathing disruption, or other modifiers.
// Calculate stamina regen with breathing disruptionconst baseRegen = regenRate * BASE_STAMINA_REGEN_RATE;const modifiedRegen = BreathingDisruptionSystem.calculateStaminaRegen( player, baseRegen); Copy
// Calculate stamina regen with breathing disruptionconst baseRegen = regenRate * BASE_STAMINA_REGEN_RATE;const modifiedRegen = BreathingDisruptionSystem.calculateStaminaRegen( player, baseRegen);
기본체력재생속도
Base stamina regeneration rate (stamina per second).
Korean: 기본 체력 재생 속도
This is the base rate at which stamina regenerates when not affected by combat state penalties, breathing disruption, or other modifiers.