using Content.Server.StationEvents.Events; using Content.Shared.Storage; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(ImmovableRodRule))] public sealed partial class ImmovableRodRuleComponent : Component { /// List of possible rods and spawn probabilities. /// [DataField] public List RodPrototypes = new(); }