mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
23 lines
757 B
C#
23 lines
757 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class PathScientistScanBotProfileEntry
|
|
{
|
|
public uint Id;
|
|
public uint LocalizedTextId;
|
|
public uint Creature2Id;
|
|
public uint ScanTimeMS;
|
|
public uint ProcessingTimeMS;
|
|
public float PlayerRadius;
|
|
public float ScanAOERange;
|
|
public float MaxSeekDistance;
|
|
public float SpeedMultiplier;
|
|
public float ThoroughnessMultiplier;
|
|
public float HealthMultiplier;
|
|
public float HealthRegenMultiplier;
|
|
public uint MinCooldownTimeMs;
|
|
public uint MaxCooldownTimeMs;
|
|
public float MaxCooldownDistance;
|
|
public uint PathScientistScanBotProfileFlags;
|
|
public uint SocketCount;
|
|
}
|
|
}
|