using Content.Shared._NF.Research.Prototypes; using Robust.Shared.Prototypes; namespace Content.Server._NF.Stacks.Components; /// /// Denotes an item that /// [RegisterComponent] public sealed partial class RandomBlueprintComponent : Component { [DataField(required: true)] public ProtoId Blueprint; [DataField] public int MinRolls = 1; [DataField] public int MaxRolls = 1; }