Added fire and grill sounds to the bonfire.

This commit is contained in:
MistakeNot4892
2024-01-18 19:31:15 +11:00
parent b9c71c9a95
commit 1d03b7a3d5
9 changed files with 41 additions and 3 deletions
+14 -1
View File
@@ -42,4 +42,17 @@
/datum/looping_sound/small_motor/get_sound(starttime)
speed = clamp(speed, 1, 3)
return ..(starttime, mid_sounds[speed])
return ..(starttime, mid_sounds[speed])
/datum/looping_sound/fire_crackles
start_sound = 'sound/ambience/firecrackle01.ogg'
start_length = 10
mid_sounds = list(
'sound/ambience/firecrackle02.ogg',
'sound/ambience/firecrackle03.ogg',
'sound/ambience/firecrackle04.ogg',
'sound/ambience/firecrackle05.ogg'
)
mid_length = 10
end_sound = 'sound/ambience/firecrackle06.ogg'
volume = 10