2023-11-06 05:36:08 +03:00
|
|
|
using Robust.Shared.Audio;
|
|
|
|
|
using Content.Shared.StatusIcon;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
|
|
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.NukeOps;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is used for tagging a mob as a nuke operative.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
|
|
|
public sealed partial class NukeOperativeComponent : Component
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-04-24 21:31:45 -04:00
|
|
|
///
|
2023-11-06 05:36:08 +03:00
|
|
|
/// </summary>
|
2024-08-09 08:14:07 +02:00
|
|
|
[DataField("syndStatusIcon", customTypeSerializer: typeof(PrototypeIdSerializer<FactionIconPrototype>))]
|
2023-11-06 05:36:08 +03:00
|
|
|
public string SyndStatusIcon = "SyndicateFaction";
|
|
|
|
|
}
|