mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
THERE IS OGG! I DIDN'T LIE (#87975)
## About The Pull Request Converted `duct_tape_snap` and `duct_tape_rip` from mp3 to ogg, 441,00 Hz, mono. ## Why It's Good For The Game Sound standards. ## Changelog N/A
This commit is contained in:
@@ -29,14 +29,14 @@
|
||||
if(user.get_inactive_held_item() == src)
|
||||
if(is_zero_amount(delete_if_zero = TRUE))
|
||||
return
|
||||
playsound(user, 'sound/items/duct_tape/duct_tape_rip.mp3', 50, TRUE)
|
||||
playsound(user, 'sound/items/duct_tape/duct_tape_rip.ogg', 50, TRUE)
|
||||
if(!do_after(user, 1 SECONDS))
|
||||
return
|
||||
var/new_tape_gag = new tape_gag(src)
|
||||
user.put_in_hands(new_tape_gag)
|
||||
use(1)
|
||||
to_chat(user, span_notice("You rip off a piece of tape."))
|
||||
playsound(user, 'sound/items/duct_tape/duct_tape_snap.mp3', 50, TRUE)
|
||||
playsound(user, 'sound/items/duct_tape/duct_tape_snap.ogg', 50, TRUE)
|
||||
return TRUE
|
||||
return ..()
|
||||
|
||||
@@ -53,10 +53,10 @@
|
||||
return ITEM_INTERACT_BLOCKING
|
||||
|
||||
user.visible_message(span_notice("[user] begins wrapping [target] with [src]."), span_notice("You begin wrapping [target] with [src]."))
|
||||
playsound(user, 'sound/items/duct_tape/duct_tape_rip.mp3', 50, TRUE)
|
||||
playsound(user, 'sound/items/duct_tape/duct_tape_rip.ogg', 50, TRUE)
|
||||
|
||||
if(do_after(user, 3 SECONDS, target=target))
|
||||
playsound(user, 'sound/items/duct_tape/duct_tape_snap.mp3', 50, TRUE)
|
||||
playsound(user, 'sound/items/duct_tape/duct_tape_snap.ogg', 50, TRUE)
|
||||
use(1)
|
||||
if(istype(target, /obj/item/clothing/gloves/fingerless))
|
||||
var/obj/item/clothing/gloves/tackler/offbrand/O = new /obj/item/clothing/gloves/tackler/offbrand
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
. = ..()
|
||||
if(user.get_item_by_slot(ITEM_SLOT_MASK) != src)
|
||||
return
|
||||
playsound(user, 'sound/items/duct_tape/duct_tape_rip.mp3', 50, TRUE)
|
||||
playsound(user, 'sound/items/duct_tape/duct_tape_rip.ogg', 50, TRUE)
|
||||
if(harmful_strip)
|
||||
user.apply_damage(stripping_damage, BRUTE, BODY_ZONE_HEAD)
|
||||
INVOKE_ASYNC(user, TYPE_PROC_REF(/mob, emote), "scream")
|
||||
|
||||
@@ -136,7 +136,7 @@
|
||||
cracked = FALSE
|
||||
has_been_sealed = TRUE
|
||||
contents_hidden = TRUE
|
||||
playsound(get_turf(user), 'sound/items/duct_tape/duct_tape_snap.mp3', 60)
|
||||
playsound(get_turf(user), 'sound/items/duct_tape/duct_tape_snap.ogg', 60)
|
||||
icon_state = "[sealed_icon]"
|
||||
update_appearance()
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ https://freesound.org/s/431740/ (CC 0)
|
||||
chainsaw_stop.ogg is adapted from kyles "chainsaw sawing short cuts +stop.flac" (CC 0)
|
||||
https://freesound.org/people/kyles/sounds/453256/
|
||||
|
||||
clock.mp3 is adapted from Tetrisrocker's "Clock", which uses CC Attributions 0
|
||||
clock.ogg is adapted from Tetrisrocker's "Clock", which uses CC Attributions 0
|
||||
https://freesound.org/people/Tetrisrocker/sounds/458627/
|
||||
|
||||
ark_activation.ogg is taken from ScottFerguson1's "Cucko Clock edited version", which is licensed under CC Attribution 3.0
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user