You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
393 B
Go
11 lines
393 B
Go
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
|
|
) |