Files
tbd-station-14/Content.Server/Nuke/NukeLabelComponent.cs
2022-10-09 12:28:08 -07:00

15 lines
433 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 class NukeLabelComponent : Component
{
[DataField("prefix")] public string NukeLabel = "nuke-label-nanotrasen";
[DataField("serialLength")] public int SerialLength = 6;
}