Reduces volume of the nuke sound (#86888)

This commit is contained in:
grungussuss
2024-09-27 16:33:45 +02:00
committed by GitHub
parent 3ceaf41119
commit 2cf34ec44e
13 changed files with 15 additions and 15 deletions
@@ -238,7 +238,7 @@ GLOBAL_DATUM_INIT(battle_royale_master, /datum/battle_royale_master, new)
As a gesture of gratitude, we will be providing our premium broadcast to your entertainment monitors at no cost so that you can watch the excitement. \n\
Bystanders are advised not to intervene... but if you do, make it look good for the camera!",
title = "Rumble Royale Beginning",
sound = 'sound/machines/alarm.ogg',
sound = 'sound/announcer/alarm/nuke_alarm.ogg',
has_important_message = TRUE,
sender_override = "Rumble Royale Pirate Broadcast Station",
color_override = "red",
+2 -2
View File
@@ -963,7 +963,7 @@
cooldown = world.time + 600
user.audible_message(span_hear("You hear the click of a button."), self_message = span_notice("You activate [src], it plays a loud noise!"))
sleep(0.5 SECONDS)
playsound(src, 'sound/machines/alarm.ogg', 20, FALSE)
playsound(src, 'sound/announcer/alarm/nuke_alarm.ogg', 20, FALSE)
sleep(14 SECONDS)
user.visible_message(span_alert("[src] violently explodes!"))
explosion(src, light_impact_range = 1)
@@ -973,7 +973,7 @@
user.visible_message(span_warning("[user] presses a button on [src]."), span_notice("You activate [src], it plays a loud noise!"), span_hear("You hear the click of a button."))
sleep(0.5 SECONDS)
icon_state = "nuketoy"
playsound(src, 'sound/machines/alarm.ogg', 20, FALSE)
playsound(src, 'sound/announcer/alarm/nuke_alarm.ogg', 20, FALSE)
sleep(13.5 SECONDS)
icon_state = "nuketoycool"
sleep(cooldown - world.time)