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 class RandomMetadataComponent : Component
{
[DataField("descriptionSegments")]
public List? DescriptionSegments;
[DataField("nameSegments")]
public List? NameSegments;
[DataField("nameSeparator")]
public string NameSeparator = " ";
[DataField("descriptionSeparator")]
public string DescriptionSeparator = " ";
}