2021-07-17 02:37:09 +02:00
|
|
|
|
namespace Content.Shared.Alert
|
2020-11-09 20:22:19 -08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Every kind of alert. Corresponds to alertType field in alert prototypes defined in YML
|
2020-12-13 14:28:20 -08:00
|
|
|
|
/// NOTE: Using byte for a compact encoding when sending this in messages, can upgrade
|
|
|
|
|
|
/// to ushort
|
2020-11-09 20:22:19 -08:00
|
|
|
|
/// </summary>
|
2020-12-13 14:28:20 -08:00
|
|
|
|
public enum AlertType : byte
|
2020-11-09 20:22:19 -08:00
|
|
|
|
{
|
|
|
|
|
|
Error,
|
2020-12-23 23:46:01 +01:00
|
|
|
|
LowOxygen,
|
2020-11-09 20:22:19 -08:00
|
|
|
|
LowPressure,
|
|
|
|
|
|
HighPressure,
|
|
|
|
|
|
Fire,
|
|
|
|
|
|
Cold,
|
|
|
|
|
|
Hot,
|
|
|
|
|
|
Weightless,
|
|
|
|
|
|
Stun,
|
|
|
|
|
|
Handcuffed,
|
|
|
|
|
|
Buckled,
|
|
|
|
|
|
HumanCrit,
|
|
|
|
|
|
HumanDead,
|
|
|
|
|
|
HumanHealth,
|
|
|
|
|
|
PilotingShuttle,
|
|
|
|
|
|
Overfed,
|
|
|
|
|
|
Peckish,
|
|
|
|
|
|
Starving,
|
|
|
|
|
|
Overhydrated,
|
|
|
|
|
|
Thirsty,
|
|
|
|
|
|
Parched,
|
|
|
|
|
|
Pulled,
|
|
|
|
|
|
Pulling,
|
2021-01-11 19:24:09 +01:00
|
|
|
|
Magboots,
|
2022-02-10 17:53:10 +13:00
|
|
|
|
Toxins,
|
2020-11-09 20:22:19 -08:00
|
|
|
|
Debug1,
|
|
|
|
|
|
Debug2,
|
|
|
|
|
|
Debug3,
|
|
|
|
|
|
Debug4,
|
|
|
|
|
|
Debug5,
|
|
|
|
|
|
Debug6
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|