2023-04-25 20:23:14 -04:00
|
|
|
|
using Content.Server.StationEvents.Events;
|
2023-05-01 11:21:39 +03:00
|
|
|
|
using Content.Shared.Storage;
|
2023-04-25 20:23:14 -04:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.StationEvents.Components;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, Access(typeof(VentCrittersRule))]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class VentCrittersRuleComponent : Component
|
2023-04-25 20:23:14 -04:00
|
|
|
|
{
|
2023-05-01 11:21:39 +03:00
|
|
|
|
[DataField("entries")]
|
|
|
|
|
|
public List<EntitySpawnEntry> Entries = new();
|
2023-07-09 22:25:05 +03:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// At least one special entry is guaranteed to spawn
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField("specialEntries")]
|
|
|
|
|
|
public List<EntitySpawnEntry> SpecialEntries = new();
|
2023-04-25 20:23:14 -04:00
|
|
|
|
}
|