Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New sounds for welcoming the crew to the station #26666

Merged
merged 5 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/controllers/subsystem/SSticker.dm
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ SUBSYSTEM_DEF(ticker)

SSdbcore.SetRoundStart()
to_chat(world, "<span class='darkmblue'><B>Enjoy the game!</B></span>")
SEND_SOUND(world, sound('sound/AI/welcome.ogg'))
SEND_SOUND(world, sound(SSmapping.map_datum.welcome_sound))

if(SSholiday.holidays)
to_chat(world, "<span class='darkmblue'>and...</span>")
Expand Down
2 changes: 2 additions & 0 deletions code/modules/mapping/base_map_datum.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@
var/voteable = TRUE
/// Minimum amount of players required for this map to be eligible in random map picks.
var/min_players_random = 0
/// Sound to play at the start of the game, aka the welcoming sound
var/welcome_sound = 'sound/AI/welcome.ogg'
5 changes: 5 additions & 0 deletions code/modules/mapping/station_datums.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,36 @@
technical_name = "Cyberiad"
map_path = "_maps/map_files/stations/boxstation.dmm"
webmap_url = "https://webmap.affectedarc07.co.uk/maps/paradise/cyberiad/"
welcome_sound = 'sound/AI/welcome_cyberiad.ogg'

/datum/map/metastation
fluff_name = "NSS Cerebron"
technical_name = "MetaStation"
map_path = "_maps/map_files/stations/metastation.dmm"
webmap_url = "https://webmap.affectedarc07.co.uk/maps/paradise/metastation/"
welcome_sound = 'sound/AI/welcome_cerebron.ogg'

/datum/map/deltastation
fluff_name = "NSS Kerberos"
technical_name = "Delta"
map_path = "_maps/map_files/stations/deltastation.dmm"
webmap_url = "https://webmap.affectedarc07.co.uk/maps/paradise/deltastation/"
welcome_sound = 'sound/AI/welcome_kerberos.ogg'

/datum/map/cerestation
fluff_name = "NSS Farragus"
technical_name = "CereStation"
map_path = "_maps/map_files/stations/cerestation.dmm"
webmap_url = "https://webmap.affectedarc07.co.uk/maps/paradise/cerestation/"
min_players_random = 60
welcome_sound = 'sound/AI/welcome_farragus.ogg'

/datum/map/emeraldstation
fluff_name = "NSS Diagoras"
technical_name = "EmeraldStation"
map_path = "_maps/map_files/stations/emeraldstation.dmm"
webmap_url = "https://affectedarc07.co.uk/emerald.html"
welcome_sound = 'sound/AI/welcome_diagoras.ogg'

/datum/map/test_tiny
fluff_name = "test_tiny"
Expand Down
Binary file added sound/AI/welcome_cerebron.ogg
Binary file not shown.
Binary file added sound/AI/welcome_cyberiad.ogg
Binary file not shown.
Binary file added sound/AI/welcome_diagoras.ogg
Binary file not shown.
Binary file added sound/AI/welcome_farragus.ogg
Binary file not shown.
Binary file added sound/AI/welcome_kerberos.ogg
Binary file not shown.