* Initial edits of files Untested yet. I would like to make sure all is accounted for before moving the files. * trying my best * Revert "trying my best" This reverts commit 9aeece466df0169adec97e3947b061b54fd9b388. * Revert "Initial edits of files" This reverts commit 45c6e2343844b5fcafadbf2e5115fb2f241086a1. * an actual meal * Added networking to LungComponent.cs * removed duplicate using * moving GasRagents to SharedAtmosphereSystem.cs
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using Content.Shared.Body.Systems;
|
|
using Content.Shared.Alert;
|
|
using Content.Shared.Atmos;
|
|
using Content.Shared.Chemistry.Components;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Body.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(LungSystem))]
|
|
public sealed partial class LungComponent : Component
|
|
{
|
|
[DataField]
|
|
[Access(typeof(LungSystem), Other = AccessPermissions.ReadExecute)] // FIXME Friends
|
|
public GasMixture Air = new()
|
|
{
|
|
Volume = 6,
|
|
Temperature = Atmospherics.NormalBodyTemperature
|
|
};
|
|
|
|
/// <summary>
|
|
/// The name/key of the solution on this entity which these lungs act on.
|
|
/// </summary>
|
|
[DataField]
|
|
public string SolutionName = LungSystem.LungSolutionName;
|
|
|
|
/// <summary>
|
|
/// The solution on this entity that these lungs act on.
|
|
/// </summary>
|
|
[ViewVariables]
|
|
public Entity<SolutionComponent>? Solution = null;
|
|
|
|
/// <summary>
|
|
/// The type of gas this lung needs. Used only for the breathing alerts, not actual metabolism.
|
|
/// </summary>
|
|
[DataField]
|
|
public ProtoId<AlertPrototype> Alert = "LowOxygen";
|
|
}
|