using Content.Shared._CP14.Demiplane.Prototypes; using Content.Shared._CP14.RoundStatistic; using Robust.Shared.Prototypes; namespace Content.Server._CP14.Demiplane.Components; /// /// Stores the data needed to generate a new demiplane /// [RegisterComponent, Access(typeof(CP14DemiplaneSystem))] public sealed partial class CP14DemiplaneGeneratorDataComponent : Component { [DataField] public ProtoId? Location; [DataField] public List> SelectedModifiers = new(); /// /// Demiplane Difficulty Level. By design, the plan so far is for a framework of 1 to 10, but technically could support more. /// [DataField(required: true)] public int Level = 1; [DataField(required: true)] public Dictionary, float> Limits = new(); [DataField] public ProtoId Statistic = "DemiplaneOpen"; [DataField] public List AutoRifts = new() { "CP14DemiplaneTimedRadiusPassway", "CP14DemiplanRiftCore" }; }