* fuck this * and this * aaand this * content fix * Update base.yml * Update physical.yml * kill bob
22 lines
750 B
C#
22 lines
750 B
C#
using Content.Server._CP14.DemiplaneTraveling;
|
|
using Content.Shared._CP14.Demiplane.Prototypes;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server._CP14.Demiplane.Components;
|
|
|
|
/// <summary>
|
|
/// Stores all the information needed to generate a new demiplane
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CP14DemiplaneSystem), typeof(CP14StationDemiplaneMapSystem))]
|
|
public sealed partial class CP14DemiplaneDataComponent : Component
|
|
{
|
|
[DataField]
|
|
public ProtoId<CP14DemiplaneLocationPrototype>? Location;
|
|
|
|
[DataField]
|
|
public List<ProtoId<CP14DemiplaneModifierPrototype>> SelectedModifiers = new();
|
|
|
|
[DataField]
|
|
public List<EntProtoId> AutoRifts = new() { "CP14DemiplaneTimedRadiusPassway", "CP14DemiplanRiftCore" };
|
|
}
|