using Content.Shared.Dataset;
using Robust.Shared.Prototypes;
namespace Content.Server.RandomMetadata;
///
/// Randomizes the description and/or the name for an entity by creating it from list of dataset prototypes or strings.
///
[RegisterComponent]
public sealed partial class RandomMetadataComponent : Component
{
[DataField]
public List>? DescriptionSegments;
[DataField]
public List>? NameSegments;
[DataField]
public string NameSeparator = " ";
[DataField]
public string DescriptionSeparator = " ";
}