package constants const ( OfflineAutoPotionChance = 0.10 OfflineAutoPotionHPThresh = 0.60 // CombatSimMaxStepsDefault is the iteration cap when CombatSimOptions.MaxSteps <= 0 (offline, tests). CombatSimMaxStepsDefault = 200_000 // CombatSimMaxStepsLong is used by balance CLIs and admin combat sim so long fights (DoT/regen) are not cut off early. CombatSimMaxStepsLong = 3_000_000 )