Skip to content

Commit

Permalink
Sound Changes (VestaOfOrion#364)
Browse files Browse the repository at this point in the history
* Sound Changes
- AI voice changes
- New sounds for alerts

* Update check-paths.sh
  • Loading branch information
Zulu0009 authored Mar 24, 2021
1 parent cd95ce6 commit dd97e89
Show file tree
Hide file tree
Showing 21 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion maps/torch/torch_security_state.dm
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
overlay_status_display = "status_display_violet"
alert_border = "alert_border_violet"

var/static/datum/announcement/priority/security/security_announcement_violet = new(do_log = 0, do_newscast = 1, new_sound = sound('sound/misc/violetalert.ogg'))

up_description = "A major medical emergency has developed. Medical personnel are required to report to their supervisor for orders, and non-medical personnel are required to obey all relevant instructions from medical staff."
down_description = "Code violet procedures are now in effect; Medical personnel are required to report to their supervisor for orders, and non-medical personnel are required to obey relevant instructions from medical staff."

Expand All @@ -76,6 +78,8 @@

psionic_control_level = PSI_IMPLANT_LOG

var/static/datum/announcement/priority/security/security_announcement_orange = new(do_log = 0, do_newscast = 1, new_sound = sound('sound/misc/orangealert1.ogg'))

up_description = "A major engineering emergency has developed. Engineering personnel are required to report to their supervisor for orders, and non-engineering personnel are required to evacuate any affected areas and obey relevant instructions from engineering staff."
down_description = "Code orange procedures are now in effect; Engineering personnel are required to report to their supervisor for orders, and non-engineering personnel are required to evacuate any affected areas and obey relevant instructions from engineering staff."

Expand All @@ -95,6 +99,9 @@

psionic_control_level = PSI_IMPLANT_LOG

var/static/datum/announcement/priority/security/security_announcement_red = new(do_log = 0, do_newscast = 1, new_sound = sound('sound/misc/notice1.ogg'))


up_description = "A major security emergency has developed. Security personnel are to report to their supervisor for orders, are permitted to search staff and facilities, and may have weapons visible on their person."
down_description = "Code blue procedures are now in effect. Security personnel are to report to their supervisor for orders, are permitted to search staff and facilities, and may have weapons visible on their person."

Expand Down Expand Up @@ -128,7 +135,7 @@
/decl/security_level/default/torchdept/code_delta
name = "code delta"
icon = 'icons/misc/security_state.dmi'

light_max_bright = 0.75
light_inner_range = 0.1
light_outer_range = 3
Expand Down
Binary file modified sound/AI/torch/abandonship.ogg
Binary file not shown.
Binary file modified sound/AI/torch/aliens.ogg
Binary file not shown.
Binary file modified sound/AI/torch/commandreport.ogg
Binary file not shown.
Binary file modified sound/AI/torch/electricalstormmajor.ogg
Binary file not shown.
Binary file modified sound/AI/torch/electricalstormmoderate.ogg
Binary file not shown.
Binary file modified sound/AI/torch/gravanomalies.ogg
Binary file not shown.
Binary file modified sound/AI/torch/meteors.ogg
Binary file not shown.
Binary file modified sound/AI/torch/outbreak5.ogg
Binary file not shown.
Binary file modified sound/AI/torch/outbreak7.ogg
Binary file not shown.
Binary file modified sound/AI/torch/outbreak7viral.ogg
Binary file not shown.
Binary file modified sound/AI/torch/poweroff.ogg
Binary file not shown.
Binary file modified sound/AI/torch/poweron.ogg
Binary file not shown.
Binary file modified sound/AI/torch/radiation.ogg
Binary file not shown.
Binary file modified sound/AI/torch/radiation2.ogg
Binary file not shown.
Binary file modified sound/AI/torch/spanomalies.ogg
Binary file not shown.
Binary file modified sound/misc/notice1.ogg
Binary file not shown.
Binary file added sound/misc/orangealert1.ogg
Binary file not shown.
Binary file modified sound/misc/redalert1.ogg
Binary file not shown.
Binary file added sound/misc/violetalert.ogg
Binary file not shown.
2 changes: 1 addition & 1 deletion test/check-paths.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ exactly 3 "update_icon() override" '/update_icon\((.*)\)' -P
exactly 1 "goto use" 'goto '
exactly 490 "spawn uses" 'spawn\s*\(\s*(-\s*)?\d*\s*\)' -P
exactly 0 "tag uses" '\stag = ' -P '**/*.dmm'
exactly 251 "/global/ or /static/ vars defined" '/(global|static)/' -P
exactly 254 "/global/ or /static/ vars defined" '/(global|static)/' -P
# With the potential exception of << if you increase any of these numbers you're probably doing it wrong

broken_files=0
Expand Down

0 comments on commit dd97e89

Please sign in to comment.