This commit is contained in:
Fluffy
2024-03-27 09:02:06 +00:00
committed by GitHub
parent a6bf5798e4
commit 995dbaf430
27 changed files with 80 additions and 39 deletions
+1 -1
View File
@@ -38,7 +38,7 @@
SPAN_NOTICE("You assemble a [barricade_name] barricade."))
SB.set_dir(user.dir)
SB.add_fingerprint(user)
playsound(SB, build_sound)
playsound(SB, build_sound, 40)
use(1)
/obj/item/stack/barricade/random/Initialize(mapload)
@@ -188,7 +188,7 @@
SPAN_WARNING("You hear a horrible ripping noise."))
else
part.droplimb(0,DROPLIMB_BLUNT)
playsound(get_turf(imp_in), BP_IS_ROBOTIC(part) ? 'sound/effects/meteorimpact.ogg' : 'sound/effects/splat.ogg')
playsound(get_turf(imp_in), BP_IS_ROBOTIC(part) ? 'sound/effects/meteorimpact.ogg' : 'sound/effects/splat.ogg', 70)
else if(ismob(imp_in))
var/mob/M = imp_in
M.gib() //Simple mobs just get got
+1 -1
View File
@@ -286,7 +286,7 @@
START_PROCESSING(SSfast_process, src)
INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(tgui_alert), triggerer, "You feel your [pick("right", "left")] foot step down on a button with a click..., Uh..., Oh...", "Dread", list("Mom..."))
playsound(src, sound('sound/weapons/empty/empty6.ogg'))
playsound(src, sound('sound/weapons/empty/empty6.ogg'), 50)
else
late_trigger(locate(engaged_by))
+1 -1
View File
@@ -17,7 +17,7 @@
if(prob(10))
var/T = get_turf(src)
icon_state = "hivebot_head_active"
playsound(src.loc, 'sound/effects/creatures/hivebot/hivebot-bark-005.ogg')
playsound(src.loc, 'sound/effects/creatures/hivebot/hivebot-bark-005.ogg', 60)
to_chat(user, SPAN_WARNING("\The [src] suddenly sparks and lights up, emitting some unintelligible noise!"))
spark(T, 3, GLOB.alldirs)
addtimer(CALLBACK(src, PROC_REF(deactivate)), 3 SECONDS)