Add action pool selector to settings

This commit is contained in:
Asriel Camora
2024-03-03 19:04:06 -08:00
parent 84d7d5737f
commit 0eae63f7bc
2 changed files with 146 additions and 0 deletions
+13
View File
@@ -93,6 +93,19 @@ public readonly record struct SolverConfig
ActionType.BasicTouch,
});
public static readonly IReadOnlySet<ActionType> InefficientActions = new HashSet<ActionType>(new[]
{
ActionType.CarefulObservation,
ActionType.HeartAndSoul,
ActionType.FinalAppraisal
});
public static readonly IReadOnlySet<ActionType> RiskyActions = new HashSet<ActionType>(new[]
{
ActionType.RapidSynthesis,
ActionType.HastyTouch,
});
public static readonly SolverConfig SimulatorDefault = new SolverConfig() with
{