namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; /// /// When activated, will teleport the artifact /// to a random position within a certain radius /// [RegisterComponent] public sealed partial class RandomTeleportArtifactComponent : Component { /// /// The max distance that the artifact will teleport. /// [DataField("maxRange")] public float MaxRange = 15f; /// /// The min distance that the artifact will teleport. /// [DataField("minRange")] public float MinRange = 6f; }