6
2025-11-05 11:11:22 +03:00

17 lines
467 B
C#

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