2021-11-11 04:29:11 +03:00
|
|
|
namespace Content.Server.Nuke
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Paper with a written nuclear code in it.
|
|
|
|
|
/// Can be used in mapping or admins spawn.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class NukeCodePaperComponent : Component
|
2021-11-11 04:29:11 +03:00
|
|
|
{
|
2023-03-26 12:58:57 -04:00
|
|
|
/// <summary>
|
|
|
|
|
/// Whether or not paper will contain a code for a nuke on the same
|
|
|
|
|
/// station as the paper, or if it will get a random code from all
|
|
|
|
|
/// possible nukes.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField("allNukesAvailable")]
|
|
|
|
|
public bool AllNukesAvailable;
|
2021-11-11 04:29:11 +03:00
|
|
|
}
|
|
|
|
|
}
|