Merge pull request #6065 from Rykka-Stormheart/shep-dev-sound-overhaul

Adds Sounds to stuff!
This commit is contained in:
Novacat
2019-10-24 15:57:18 -04:00
committed by GitHub
16 changed files with 5 additions and 1 deletions

View File

@@ -931,9 +931,10 @@
/obj/machinery/suit_cycler/proc/finished_job()
var/turf/T = get_turf(src)
T.visible_message("\icon[src]<span class='notice'>The [src] pings loudly.</span>")
T.audible_message("\icon[src]<span class='notice'>The [src] beeps several times.</span>")
icon_state = initial(icon_state)
active = 0
playsound(src, 'sound/machines/boobeebeep.ogg', 50)
updateUsrDialog()
/obj/machinery/suit_cycler/proc/repair_suit()

View File

@@ -74,6 +74,7 @@
health = 200
pass_flags = PASSTABLE
movement_cooldown = 10
movement_sound = 'sound/effects/spider_loop.ogg'
poison_resist = 0.5
see_in_dark = 10

View File

@@ -26,6 +26,7 @@
maxHealth = 200
health = 200
movement_sound = 'sound/effects/houndstep.ogg'
melee_damage_lower = 5
melee_damage_upper = 10 //makes it so 4 max dmg hits don't instakill you.

View File

@@ -244,6 +244,7 @@
scanner_temperature = max(scanner_temperature - 5 - 10 * rand(), 0)
if(prob(0.75))
src.visible_message("<font color='blue'>\icon[src] [pick("plinks","hisses")][pick(" quietly"," softly"," sadly"," plaintively")].</font>", 2)
playsound(loc, 'sound/effects/ding.ogg', 25)
last_process_worldtime = world.time
/obj/machinery/radiocarbon_spectrometer/proc/stop_scanning()

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
sound/effects/houndstep.ogg Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.