2025-05-05 15:19:44 +03:00
|
|
|
using Content.Server._CP14.DemiplaneTraveling;
|
2024-10-31 19:13:44 +03:00
|
|
|
using Content.Shared._CP14.Demiplane.Prototypes;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server._CP14.Demiplane.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-05-05 15:19:44 +03:00
|
|
|
/// Stores all the information needed to generate a new demiplane
|
2024-10-31 19:13:44 +03:00
|
|
|
/// </summary>
|
2025-05-05 15:19:44 +03:00
|
|
|
[RegisterComponent, Access(typeof(CP14DemiplaneSystem), typeof(CP14StationDemiplaneMapSystem))]
|
|
|
|
|
public sealed partial class CP14DemiplaneDataComponent : Component
|
2024-10-31 19:13:44 +03:00
|
|
|
{
|
|
|
|
|
[DataField]
|
2024-11-01 18:08:57 +03:00
|
|
|
public ProtoId<CP14DemiplaneLocationPrototype>? Location;
|
2024-10-31 19:13:44 +03:00
|
|
|
|
2024-11-01 18:08:57 +03:00
|
|
|
[DataField]
|
2024-12-16 00:38:29 +03:00
|
|
|
public List<ProtoId<CP14DemiplaneModifierPrototype>> SelectedModifiers = new();
|
2024-11-01 18:08:57 +03:00
|
|
|
|
2025-02-08 01:09:48 +03:00
|
|
|
[DataField]
|
|
|
|
|
public List<EntProtoId> AutoRifts = new() { "CP14DemiplaneTimedRadiusPassway", "CP14DemiplanRiftCore" };
|
2024-10-31 19:13:44 +03:00
|
|
|
}
|