mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 00:29:02 +01:00
Merge branch 'master' of https://github.com/tgstation/tgstation into upstream-25-04a
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user