2022-08-13 09:49:41 -04: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,
|
2024-01-23 21:17:40 +01:00
|
|
|
LowNitrogen,
|
2020-11-09 20:22:19 -08:00
|
|
|
LowPressure,
|
|
|
|
|
HighPressure,
|
|
|
|
|
Fire,
|
|
|
|
|
Cold,
|
|
|
|
|
Hot,
|
|
|
|
|
Weightless,
|
|
|
|
|
Stun,
|
|
|
|
|
Handcuffed,
|
2022-08-24 10:50:31 -04:00
|
|
|
Ensnared,
|
2020-11-09 20:22:19 -08:00
|
|
|
Buckled,
|
|
|
|
|
HumanCrit,
|
|
|
|
|
HumanDead,
|
|
|
|
|
HumanHealth,
|
2024-01-10 21:14:43 +07:00
|
|
|
Bleeding,
|
2023-08-12 17:39:58 -04:00
|
|
|
BorgBattery,
|
|
|
|
|
BorgBatteryNone,
|
2023-09-25 01:44:44 +03:00
|
|
|
//WD start
|
|
|
|
|
Insane,
|
|
|
|
|
VeryVeryBad,
|
|
|
|
|
VeryBad,
|
|
|
|
|
Bad,
|
|
|
|
|
NotGreat,
|
|
|
|
|
Neutral,
|
|
|
|
|
Great,
|
|
|
|
|
Good,
|
|
|
|
|
VeryGood,
|
|
|
|
|
VeryVeryGood,
|
|
|
|
|
MoodDead,
|
|
|
|
|
//WD end
|
|
|
|
|
CultBuffed,
|
2020-11-09 20:22:19 -08:00
|
|
|
PilotingShuttle,
|
|
|
|
|
Peckish,
|
|
|
|
|
Starving,
|
|
|
|
|
Thirsty,
|
|
|
|
|
Parched,
|
2022-07-06 18:06:12 +10:00
|
|
|
Stamina,
|
2020-11-09 20:22:19 -08:00
|
|
|
Pulled,
|
|
|
|
|
Pulling,
|
2021-01-11 19:24:09 +01:00
|
|
|
Magboots,
|
2022-07-25 14:42:25 +10:00
|
|
|
Internals,
|
2022-02-10 17:53:10 +13:00
|
|
|
Toxins,
|
2022-06-06 04:35:24 -04:00
|
|
|
Muted,
|
2022-04-28 23:41:03 -04:00
|
|
|
VowOfSilence,
|
|
|
|
|
VowBroken,
|
2022-08-13 09:49:41 -04:00
|
|
|
Essence,
|
2024-01-31 14:01:35 +00:00
|
|
|
Chemicals,
|
2022-08-13 09:49:41 -04:00
|
|
|
Corporeal,
|
2023-07-26 02:28:35 +05:00
|
|
|
Bleed,
|
2023-08-05 17:27:12 -04:00
|
|
|
Pacified,
|
2020-11-09 20:22:19 -08:00
|
|
|
Debug1,
|
|
|
|
|
Debug2,
|
|
|
|
|
Debug3,
|
|
|
|
|
Debug4,
|
|
|
|
|
Debug5,
|
2023-09-10 07:20:27 +01:00
|
|
|
Debug6,
|
2023-09-15 06:14:47 +03:00
|
|
|
SuitPower,
|
2023-11-09 18:14:06 -05:00
|
|
|
BorgHealth,
|
|
|
|
|
BorgCrit,
|
|
|
|
|
BorgDead
|
2020-11-09 20:22:19 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|