From 359a4eabe6e125fbaff8def79b5258f844522c76 Mon Sep 17 00:00:00 2001 From: Pandora Date: Sun, 27 Feb 2022 09:13:54 +0000 Subject: [PATCH] New ringtones Adds in a few new tones for PDA ringers, mostly engineering/technical based. There's now "dust", "rad", "servo" and "spark" alongside all the existing ones. --- code/modules/pda/pda.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/modules/pda/pda.dm b/code/modules/pda/pda.dm index a2374369741..525e2662e4a 100644 --- a/code/modules/pda/pda.dm +++ b/code/modules/pda/pda.dm @@ -34,7 +34,11 @@ var/global/list/obj/item/device/pda/PDAs = list() "honk" = 'sound/items/bikehorn.ogg', "SKREE" = 'sound/voice/shriek1.ogg', // "holy" = 'sound/items/PDA/ambicha4-short.ogg', - "xeno" = 'sound/voice/hiss1.ogg') + "xeno" = 'sound/voice/hiss1.ogg', + "dust" = 'sound/effects/supermatter.ogg', + "spark" = 'sound/effects/spark4.ogg', + "rad" = 'sounds/items/geiger/high1.ogg', + "servo" = 'sound/machines/rig/rigservo.ogg') var/hidden = 0 // Is the PDA hidden from the PDA list? var/touch_silent = 0 //If 1, no beeps on interacting.