using Content.Shared.Dataset; using Robust.Shared.Prototypes; namespace Content.Shared.Paper; /// /// If added to an entity that has a , the name, /// description and contents of the paper will be replaced with a random /// entry from the specified . /// Requires . /// [RegisterComponent] public sealed partial class RandomPaperContentComponent : Component { [DataField(required: true)] public ProtoId Dataset; }