diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 924080fec6a..0b20dfc8723 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -407,6 +407,7 @@ add_stamp(writing_stats["stamp_class"], rand(0, 400), rand(0, 500), rand(0, 360), writing_stats["stamp_icon_state"]) user.visible_message(span_notice("[user] blindly stamps [src] with \the [attacking_item]!")) to_chat(user, span_notice("You stamp [src] with \the [attacking_item] the best you can!")) + playsound(src, 'sound/items/handling/standard_stamp.ogg', 50, vary = TRUE) else to_chat(user, span_notice("You ready your stamp over the paper! ")) ui_interact(user) @@ -540,6 +541,7 @@ add_stamp(stamp_class, stamp_x, stamp_y, stamp_rotation, stamp_icon_state) user.visible_message(span_notice("[user] stamps [src] with \the [holding.name]!"), span_notice("You stamp [src] with \the [holding.name]!")) + playsound(src, 'sound/items/handling/standard_stamp.ogg', 50, vary = TRUE) update_appearance() update_static_data(user, ui) diff --git a/code/modules/paperwork/stamps.dm b/code/modules/paperwork/stamps.dm index 899a0124923..9934b45c501 100644 --- a/code/modules/paperwork/stamps.dm +++ b/code/modules/paperwork/stamps.dm @@ -15,6 +15,7 @@ /obj/item/stamp/suicide_act(mob/living/user) user.visible_message(span_suicide("[user] stamps 'VOID' on [user.p_their()] forehead, then promptly falls over, dead.")) + playsound(src, 'sound/items/handling/standard_stamp.ogg', 50, vary = TRUE) return OXYLOSS /obj/item/stamp/get_writing_implement_details() diff --git a/sound/attributions.txt b/sound/attributions.txt index 7f10a08b94d..40b6e931d01 100644 --- a/sound/attributions.txt +++ b/sound/attributions.txt @@ -35,3 +35,5 @@ eject.ogg is by magedu, adapted from https://freesound.org/people/magedu/sounds/ alien_explode.ogg is adapted from zimbot's Frozen Lettuce upload https://freesound.org/people/zimbot/sounds/89378/ and little_dog4000's balloon pop https://freesound.org/people/little_dog4000/sounds/478764/ alien_organ_cut.ogg is adapted from some CC 0 flesh sound, lesaucisson's swoosh https://freesound.org/people/lesaucisson/sounds/585256/, and a snippet of EminYILDIRIM's tree cutting clip https://freesound.org/people/EminYILDIRIM/sounds/608343/ + +standard_stamp.ogg is adapted from tom_woysky's "Stamp.wav" https://freesound.org/people/tom_woysky/sounds/348316/ diff --git a/sound/items/handling/standard_stamp.ogg b/sound/items/handling/standard_stamp.ogg new file mode 100644 index 00000000000..d31fdcbc228 Binary files /dev/null and b/sound/items/handling/standard_stamp.ogg differ