namespace Content.Server.Xenoarchaeology.Artifact.XAE.Components; /// /// Effect of EMP on activation. /// [RegisterComponent, Access(typeof(XAEEmpInAreaSystem))] public sealed partial class XAEEmpInAreaComponent : Component { /// /// Range of EMP effect. /// [DataField] public float Range = 4f; /// /// Energy to be consumed from energy containers. /// [DataField] public float EnergyConsumption = 1000000; /// /// Duration (in seconds) for which devices going to be disabled. /// [DataField] public float DisableDuration = 60f; }