using Content.Server.StationEvents.Events; namespace Content.Server.StationEvents.Components; /// /// DeltaV - Prohibits meteor swarms from targeting their impact near this component. /// [RegisterComponent] public sealed partial class AntiMeteorZoneComponent : Component { /// /// The size of the area around this entity to avoid. /// [DataField] public float ZoneRadius = 5f; /// /// Percentage (roughly) of meteors that are BLOCKED from hitting near this component. /// [DataField] public float AvoidanceRate = 0.75f; }