using Content.Server._NF.Atmos.Systems;
using Content.Shared._NF.Atmos.Prototypes;
using Robust.Shared.Prototypes;
namespace Content.Shared._NF.Atmos.Components;
[RegisterComponent, Access(typeof(GasDepositSystem))]
public sealed partial class RandomGasDepositComponent : Component
{
///
/// The name of the prototype used to populate the gas deposit in this entity.
/// If null or invalid, will be selected from existing set at random.
///
[DataField]
public ProtoId? DepositPrototype;
///
/// A scale factor on the deposit's size.
/// After each gas is chosen from the deposit prototype, the scale factor is multiplied into the deposit size.
///
[DataField]
public float Scale = 1.0f;
}