Files
tbd-station-14/Content.Server/Nuke/NukeLabelComponent.cs

15 lines
411 B
C#

namespace Content.Server.Nuke;
/// <summary>
/// This generates a label for a nuclear bomb.
/// </summary>
/// <remarks>
/// This is a separate component because the fake nuclear bomb keg exists.
/// </remarks>
[RegisterComponent]
public sealed partial class NukeLabelComponent : Component
{
[DataField] public LocId Prefix = "nuke-label-nanotrasen";
[DataField] public int SerialLength = 6;
}