using Robust.Shared.Prototypes; namespace Content.Shared.Random; /// /// Random weighting dataset for solutions, able to specify reagents quantity. /// [Prototype("weightedRandomFillSolution")] public sealed partial class WeightedRandomFillSolutionPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; /// /// List of RandomFills that can be picked from. /// [DataField("fills", required: true)] public List Fills = new(); }