mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 03:27:05 +01:00
* this got a bit... out of hand
* update icon
* extra lines begone
* soundfix
* sirryan review pt1
* fuck I accidently deleted a line
* sirryan pt2
* AA suggestion
* more review
* hooooly crap
* lewcc review
* reviews
* table
* merge master
* Revert "merge master"
This reverts commit c3ec73a0f8.
* bundle css
* reviews and revival
* fuck I missed a file
* steel review
69 lines
2.2 KiB
Plaintext
69 lines
2.2 KiB
Plaintext
/datum/looping_sound/showering
|
|
start_sound = 'sound/machines/shower/shower_start.ogg'
|
|
start_length = 2
|
|
mid_sounds = list('sound/machines/shower/shower_mid1.ogg' = 1,'sound/machines/shower/shower_mid2.ogg' = 1,'sound/machines/shower/shower_mid3.ogg' = 1)
|
|
mid_length = 10
|
|
end_sound = 'sound/machines/shower/shower_end.ogg'
|
|
volume = 20
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/datum/looping_sound/supermatter
|
|
mid_sounds = list('sound/machines/sm/loops/calm.ogg' = 1)
|
|
mid_length = 60
|
|
volume = 40
|
|
extra_range = 25
|
|
falloff_exponent = 10
|
|
falloff_distance = 5
|
|
vary = TRUE
|
|
channel = CHANNEL_ENGINE
|
|
|
|
GLOBAL_DATUM_INIT(firealarm_soundloop, /datum/looping_sound/firealarm, new(list(), FALSE))
|
|
|
|
/datum/looping_sound/firealarm
|
|
mid_sounds = 'sound/machines/fire_alarm.ogg'
|
|
mid_length = 20
|
|
volume = 80
|
|
extra_range = 15
|
|
falloff_exponent = 5
|
|
channel = CHANNEL_FIREALARM
|
|
|
|
/datum/looping_sound/firealarm/sound_loop(looped)
|
|
. = ..()
|
|
if(!length(output_atoms))
|
|
stop()
|
|
|
|
///// KITCHEN MACHINERY /////
|
|
|
|
/datum/looping_sound/kitchen/microwave
|
|
start_sound = 'sound/machines/kitchen/microwave_start.ogg'
|
|
start_length = 10
|
|
mid_sounds = list('sound/machines/kitchen/microwave_mid1.ogg' = 10, 'sound/machines/kitchen/microwave_mid2.ogg' = 1)
|
|
mid_length = 15
|
|
end_sound = 'sound/machines/kitchen/microwave_end.ogg'
|
|
volume = 100
|
|
|
|
/datum/looping_sound/kitchen/deep_fryer
|
|
start_sound = 'sound/machines/kitchen/deep_fryer_immerse.ogg'
|
|
start_length = 10
|
|
mid_sounds = list('sound/machines/kitchen/deep_fryer_1.ogg' = 1, 'sound/machines/kitchen/deep_fryer_2.ogg' = 1)
|
|
mid_length = 9
|
|
end_sound = 'sound/machines/kitchen/deep_fryer_emerge.ogg'
|
|
volume = 5
|
|
|
|
/datum/looping_sound/kitchen/oven
|
|
start_sound = 'sound/machines/kitchen/oven_loop_start.ogg'
|
|
start_length = 11
|
|
mid_sounds = list('sound/machines/kitchen/oven_loop_mid.ogg' = 1)
|
|
mid_length = 12
|
|
end_sound = 'sound/machines/kitchen/oven_loop_end.ogg'
|
|
volume = 70
|
|
|
|
/datum/looping_sound/kitchen/grill
|
|
start_sound = 'sound/machines/kitchen/grill_start.ogg'
|
|
start_length = 13
|
|
mid_sounds = list('sound/machines/kitchen/grill_mid.ogg' = 1)
|
|
mid_length = 20
|
|
end_sound = 'sound/machines/kitchen/grill_end.ogg'
|
|
volume = 50
|