2023-07-02 16:40:07 +03:00
|
|
|
using Content.Server.StationEvents.Events;
|
2024-03-24 23:45:52 +01:00
|
|
|
using Content.Shared.Storage;
|
2023-07-02 16:40:07 +03:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.StationEvents.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, Access(typeof(ImmovableRodRule))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ImmovableRodRuleComponent : Component
|
2023-07-02 16:40:07 +03:00
|
|
|
{
|
2024-03-24 23:45:52 +01:00
|
|
|
/// List of possible rods and spawn probabilities.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField]
|
|
|
|
|
public List<EntitySpawnEntry> RodPrototypes = new();
|
2023-07-02 16:40:07 +03:00
|
|
|
}
|