2022-10-09 12:28:08 -07:00
|
|
|
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]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class NukeLabelComponent : Component
|
2022-10-09 12:28:08 -07:00
|
|
|
{
|
2023-10-10 20:06:24 -07:00
|
|
|
[DataField] public LocId Prefix = "nuke-label-nanotrasen";
|
|
|
|
|
[DataField] public int SerialLength = 6;
|
2022-10-09 12:28:08 -07:00
|
|
|
}
|