2025-01-11 10:52:23 +03:00
|
|
|
|
namespace LootDumpProcessor.Model.Input;
|
2023-08-12 19:08:38 +01:00
|
|
|
|
|
2025-01-11 10:52:23 +03:00
|
|
|
|
public class BotLocationModifier
|
2023-08-12 19:08:38 +01:00
|
|
|
|
{
|
2025-01-11 10:52:23 +03:00
|
|
|
|
public float? AccuracySpeed { get; set; }
|
|
|
|
|
public float? Scattering { get; set; }
|
|
|
|
|
public float? GainSight { get; set; }
|
|
|
|
|
public float? MarksmanAccuratyCoef { get; set; }
|
|
|
|
|
public float? VisibleDistance { get; set; }
|
|
|
|
|
public float? DistToPersueAxemanCoef { get; set; }
|
|
|
|
|
public int? KhorovodChance { get; set; }
|
|
|
|
|
public float? MinExfiltrationTime { get; set; }
|
|
|
|
|
public float? MaxExfiltrationTime { get; set; }
|
|
|
|
|
public float? DistToActivatePvE { get; set; }
|
|
|
|
|
public float? DistToSleepPvE { get; set; }
|
|
|
|
|
public float? DistToActivate { get; set; }
|
|
|
|
|
public float? DistToSleep { get; set; }
|
|
|
|
|
public List<AdditionalHostilitySetting>? AdditionalHostilitySettings { get; set; }
|
2023-08-12 19:08:38 +01:00
|
|
|
|
}
|