using Content.Shared.Atmos;
namespace Content.Server.Xenoarchaeology.Artifact.XAE.Components;
///
/// XenoArtifact effect that creates gas in atmosphere.
///
[RegisterComponent, Access(typeof(XAECreateGasSystem))]
public sealed partial class XAECreateGasComponent : Component
{
///
/// The gases and how many moles will be created of each.
///
[DataField]
public Dictionary Gases = new();
}