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