mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
Contains: - Storage UI v2, required for removing DeferredClose. - Stock market refactor (mostly some basic changes to stock market, didn't want to make a whole other PR for it) - Make guidebook remember where you left off - Any other PRs are purely for fixing issues related to the above PRs or the engine update. 🆑 - add: Ported Storage UI v2. - tweak: The guidebook will now remember where you left off. --------- Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Co-authored-by: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: deltanedas <39013340+deltanedas@users.noreply.github.com> Co-authored-by: 12rabbits <53499656+12rabbits@users.noreply.github.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers@gmail.com> Co-authored-by: gluesniffler <159397573+gluesniffler@users.noreply.github.com> Co-authored-by: AJCM-git <60196617+AJCM-git@users.noreply.github.com> (cherry picked from commit 3c37ff1c48637d1cdf8bc3c6b1412dad338ea205)
35 lines
1016 B
C#
35 lines
1016 B
C#
using Content.Shared.Humanoid;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared._Shitmed.Medical.Surgery.Steps;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class SurgeryAddMarkingStepComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The marking category to add the marking to.
|
|
/// </summary>
|
|
[DataField]
|
|
public HumanoidVisualLayers MarkingCategory = default!;
|
|
|
|
/// <summary>
|
|
/// Can be either a segment of a marking ID, or an entire ID that will be checked
|
|
/// against the entity to validate that the marking is not already present.
|
|
/// </summary>
|
|
[DataField]
|
|
public string MatchString = string.Empty;
|
|
|
|
/// <summary>
|
|
/// What type of organ is required for this surgery?
|
|
/// </summary>
|
|
[DataField]
|
|
public ComponentRegistry? Organ;
|
|
|
|
/// <summary>
|
|
/// Component name for accent that will be applied.
|
|
/// </summary>
|
|
[DataField]
|
|
public ComponentRegistry? Accent;
|
|
}
|