mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 10:11:09 +00:00
## 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 /🆑
90 lines
2.6 KiB
Plaintext
90 lines
2.6 KiB
Plaintext
/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
|