2023-08-10 03:33:03 -05:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Wires;
|
|
|
|
|
|
|
|
|
|
[Prototype("WiresPanelSecurityLevel")]
|
|
|
|
|
public sealed class WiresPanelSecurityLevelPrototype : IPrototype
|
|
|
|
|
{
|
|
|
|
|
[IdDataField]
|
2023-08-22 18:14:33 -07:00
|
|
|
public string ID { get; private set; } = default!;
|
2023-08-10 03:33:03 -05:00
|
|
|
|
2023-09-14 00:54:49 -05:00
|
|
|
/// <summary>
|
|
|
|
|
/// A verbal description of the wire panel's current security level
|
|
|
|
|
/// </summary>
|
2023-08-10 03:33:03 -05:00
|
|
|
[DataField("examine")]
|
|
|
|
|
public string? Examine = default!;
|
|
|
|
|
|
2023-09-14 00:54:49 -05:00
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the wiring is accessible to hackers or not
|
|
|
|
|
/// </summary>
|
2023-08-10 03:33:03 -05:00
|
|
|
[DataField("wiresAccessible")]
|
|
|
|
|
public bool WiresAccessible = true;
|
2023-09-14 00:54:49 -05:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the device can be welded shut or not
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Should be set false when you need to weld/unweld something to/from the wire panel
|
|
|
|
|
/// </remarks>
|
|
|
|
|
[DataField("weldingAllowed")]
|
|
|
|
|
public bool WeldingAllowed = true;
|
2023-08-10 03:33:03 -05:00
|
|
|
}
|