* Changeling WIP * UI * Pointers fix * Moved out abilities * Regenerate ability * Fixed Regenerate ability Prevent ghosting while regenerating * Cleanup * Base lesser form * Finished Lesser Form && Transform * Transform Sting * Blind Sting * Mute Sting Added OnExamine on absorbed human * Hallucination Sting Changeling Absorb and transfer absorbed entities to absorber * Cryogenic Sting * Adrenaline Sacs * Transform now uses Polymorph * Armblade, Shield, Armor * Tentacle Arm ability Tentacle Gun system * WIP with bugs * WiP bugs * fix implant transfer * Fixed bugs with shop transfer and actions transfer * Just in case * Vi sitter i ventrilo och spelar DotA * Fixes and proper LesserForm tracking * !!!!! * Fixed empty buttons * WIP Gamerule Ready - shop * nerf stun time cause its sucks * cleaning * just in case * Absorb DNA Objective. * Partial objectives with bugs * fix * fix pointer * Changeling objectives * Changeling objectives №2 * Admin verb, game rule * Fixed empty list check Icons for objectives * Changeling chat, changeling names etc. * fix some merge errors * - fix: Fixed all bugs with changeling --------- Co-authored-by: Y-Parvus <yevhen.parvus@gmail.com> Co-authored-by: Y-Parvus <61109031+Y-Parvus@users.noreply.github.com> Co-authored-by: HitPanda <104197232+EnefFlow@users.noreply.github.com> Co-authored-by: EnefFlow <regeto90@mail.ru>
75 lines
1.4 KiB
C#
75 lines
1.4 KiB
C#
namespace Content.Shared.Alert
|
|
{
|
|
/// <summary>
|
|
/// Every kind of alert. Corresponds to alertType field in alert prototypes defined in YML
|
|
/// NOTE: Using byte for a compact encoding when sending this in messages, can upgrade
|
|
/// to ushort
|
|
/// </summary>
|
|
public enum AlertType : byte
|
|
{
|
|
Error,
|
|
LowOxygen,
|
|
LowNitrogen,
|
|
LowPressure,
|
|
HighPressure,
|
|
Fire,
|
|
Cold,
|
|
Hot,
|
|
Weightless,
|
|
Stun,
|
|
Handcuffed,
|
|
Ensnared,
|
|
Buckled,
|
|
HumanCrit,
|
|
HumanDead,
|
|
HumanHealth,
|
|
Bleeding,
|
|
BorgBattery,
|
|
BorgBatteryNone,
|
|
//WD start
|
|
Insane,
|
|
VeryVeryBad,
|
|
VeryBad,
|
|
Bad,
|
|
NotGreat,
|
|
Neutral,
|
|
Great,
|
|
Good,
|
|
VeryGood,
|
|
VeryVeryGood,
|
|
MoodDead,
|
|
//WD end
|
|
CultBuffed,
|
|
PilotingShuttle,
|
|
Peckish,
|
|
Starving,
|
|
Thirsty,
|
|
Parched,
|
|
Stamina,
|
|
Pulled,
|
|
Pulling,
|
|
Magboots,
|
|
Internals,
|
|
Toxins,
|
|
Muted,
|
|
VowOfSilence,
|
|
VowBroken,
|
|
Essence,
|
|
Chemicals,
|
|
Corporeal,
|
|
Bleed,
|
|
Pacified,
|
|
Debug1,
|
|
Debug2,
|
|
Debug3,
|
|
Debug4,
|
|
Debug5,
|
|
Debug6,
|
|
SuitPower,
|
|
BorgHealth,
|
|
BorgCrit,
|
|
BorgDead
|
|
}
|
|
|
|
}
|