using Content.Shared._CP14.Demiplane.Prototypes;
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();
///
/// Generator Tier. Determines which modifiers and locations will be selected for this demiplane
///
[DataField(required: true)]
public Dictionary TiersContent = new();
[DataField(required: true)]
public Dictionary, float> Limits;
}