namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components;
///
/// Triggers when the salvage magnet is activated
///
[RegisterComponent]
public sealed partial class ArtifactMagnetTriggerComponent : Component
{
///
/// how close to the magnet do you have to be?
///
[DataField("range")]
public float Range = 40f;
///
/// How close do active magboots have to be?
/// This is smaller because they are weaker magnets
///
[DataField("magbootRange")]
public float MagbootRange = 2f;
}