mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
# Description Ports MODsuits from Goobstation PR https://github.com/Goob-Station/Goob-Station/pull/1242. The PR author has confirmed that he is okay with me doing this. --- # TODO - [X] Port in sprites - [x] Port in YMLs - [X] Port code - [x] Port code PATCHES - [x] Update EE with required fixes --- <details><summary><h1>Media</h1></summary> <p> ## Modsuit crafting https://github.com/user-attachments/assets/8ff03d3a-0fc1-4818-b710-bfc43f0e2a68 ## Modsuit sealing https://github.com/user-attachments/assets/6671459a-7767-499b-8678-062fc1db7134 </p> </details> --- # Changelog 🆑 - add: Modsuits have been ported from Goobstation! --------- Signed-off-by: Eris <erisfiregamer1@gmail.com> Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> Co-authored-by: VMSolidus <evilexecutive@gmail.com> (cherry picked from commit cb06c41fc07275e1f15af916babb44368c0c26c2)
44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
using Content.Server.Body.Systems;
|
|
using Content.Shared.Alert;
|
|
using Content.Shared.Atmos;
|
|
using Content.Shared.Chemistry.Components;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.Body.Components;
|
|
|
|
[RegisterComponent, 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";
|
|
|
|
[DataField]
|
|
public float MaxVolume = 100f;
|
|
|
|
[DataField]
|
|
public bool CanReact = false; // No Dexalin lungs... right?
|
|
}
|