Files
Bubberstation/modular_skyrat/modules/alerts/code/security_level_datums.dm
Roxy 0e7f328f2d Clean up the rest of the duplicate sound files (#4027)
## About The Pull Request

Used a script to find all duplicate sound files, consolidate them all
down to a single file and move it into the `modular_zubbers` structure,
update code as needed

## Why It's Good For The Game

Smaller repo

## Proof Of Testing

If it compiles it works

## Changelog
🆑
sound: cleaned up duplicate sound files in the repo
/🆑
2025-06-12 10:05:22 -07:00

90 lines
2.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/datum/security_level/delta
announcement_color = "pink"
lowering_to_configuration_key = /datum/config_entry/string/alert_delta_downto
elevating_to_configuration_key = /datum/config_entry/string/alert_delta_upto
looping_sound = 'modular_skyrat/modules/alerts/sound/misc/alarm_delta.ogg'
looping_sound_interval = 8 SECONDS
/**
* Violet
*
* Medical emergency
*/
/datum/security_level/violet
name = "violet"
name_shortform = "VIO"
announcement_color = "purple"
number_level = SEC_LEVEL_VIOLET
status_display_icon_state = "violetalert"
fire_alarm_light_color = COLOR_VIOLET
lowering_to_configuration_key = /datum/config_entry/string/alert_violet_downto
elevating_to_configuration_key = /datum/config_entry/string/alert_violet_upto
shuttle_call_time_mod = 0.75
/**
* Orange
*
* Engineering emergency
*/
/datum/security_level/orange
name = "orange"
name_shortform = "ORN"
announcement_color = "orange"
number_level = SEC_LEVEL_ORANGE
status_display_icon_state = "orangealert"
fire_alarm_light_color = LIGHT_COLOR_ORANGE
lowering_to_configuration_key = /datum/config_entry/string/alert_orange_downto
elevating_to_configuration_key = /datum/config_entry/string/alert_orange_upto
shuttle_call_time_mod = 0.75
/**
* Amber
*
* Securty emergency
*/
/datum/security_level/amber
name = "amber"
name_shortform = "AMB"
announcement_color = "yellow"
number_level = SEC_LEVEL_AMBER
status_display_icon_state = "amberalert"
fire_alarm_light_color = LIGHT_COLOR_DIM_YELLOW
lowering_to_configuration_key = /datum/config_entry/string/alert_amber_downto
elevating_to_configuration_key = /datum/config_entry/string/alert_amber_upto
shuttle_call_time_mod = 0.5
/**
* Epsilon
*
* Deathsquad comes to KILL ALL
*/
/datum/security_level/epsilon
name = "epsilon"
name_shortform = "Ε"
announcement_color = "grey"
number_level = SEC_LEVEL_EPSILON
status_display_icon_state = "epsilonalert"
fire_alarm_light_color = COLOR_ASSEMBLY_WHITE
lowering_to_configuration_key = /datum/config_entry/string/alert_epsilon_downto
elevating_to_configuration_key = /datum/config_entry/string/alert_epsilon_upto
sound = 'modular_skyrat/modules/alerts/sound/security_levels/epsilon.ogg'
looping_sound = 'modular_skyrat/modules/alerts/sound/misc/alarm_delta.ogg'
looping_sound_interval = 8 SECONDS
/**
* Gamma
*
* XK-Class EOR Event
*/
/datum/security_level/gamma
name = "gamma"
name_shortform = "Γ"
announcement_color = "pink"
number_level = SEC_LEVEL_GAMMA
status_display_icon_state = "gammaalert"
fire_alarm_light_color = COLOR_ASSEMBLY_PURPLE
elevating_to_configuration_key = /datum/config_entry/string/alert_gamma
shuttle_call_time_mod = 0.25