Merge branch 'master' of https://github.com/tgstation/tgstation into upstream-25-04a

This commit is contained in:
Waterpig
2025-04-08 18:58:45 +02:00
1089 changed files with 42417 additions and 34460 deletions
@@ -9,6 +9,8 @@
/datum/security_level
/// The name of this security level.
var/name = "not set"
/// A three-letter shortform of the security level.
var/name_shortform = "not set"
/// The color of our announcement divider.
var/announcement_color = "default"
/// The numerical level of this security level, see defines for more information.
@@ -48,6 +50,7 @@
*/
/datum/security_level/green
name = "green"
name_shortform = "GRN"
announcement_color = "green"
sound = 'sound/announcer/notice/notice2.ogg' // Friendly beep
number_level = SEC_LEVEL_GREEN
@@ -63,6 +66,7 @@
*/
/datum/security_level/blue
name = "blue"
name_shortform = "BLU"
announcement_color = "blue"
sound = 'sound/announcer/notice/notice1.ogg' // Angry alarm
number_level = SEC_LEVEL_BLUE
@@ -79,6 +83,7 @@
*/
/datum/security_level/red
name = "red"
name_shortform = "RED"
announcement_color = "red"
sound = 'sound/announcer/notice/notice3.ogg' // More angry alarm
number_level = SEC_LEVEL_RED
@@ -95,6 +100,7 @@
*/
/datum/security_level/delta
name = "delta"
name_shortform = "Δ"
announcement_color = "purple"
sound = 'sound/announcer/alarm/airraid.ogg' // Air alarm to signify importance
number_level = SEC_LEVEL_DELTA