Ports Vox Plushie from Paradise

Why not?
This commit is contained in:
Unknown
2020-12-25 14:34:51 -05:00
parent 2bc77c4dfb
commit b09515551c
2 changed files with 19 additions and 0 deletions
+19
View File
@@ -68,3 +68,22 @@
desc = "A perfectly sized snuggable river weasel! Keep away from Clams."
icon = 'icons/obj/toy_vr.dmi'
icon_state = "plushie_otter"
/obj/item/toy/plushie/vox
name = "vox plushie"
desc = "A stitched-together vox, fresh from the skipjack. Press its belly to hear it skree!"
icon = 'icons/obj/toy_vr.dmi'
icon_state = "plushie_vox"
var/cooldown = 0
/obj/item/toy/plushie/vox/attack_self(mob/user as mob)
if(!cooldown)
playsound(user, 'sound/voice/shriek1.ogg', 10, 0)
visible_message("<span class='danger'>Skreee!</span>")
cooldown = 1
addtimer(CALLBACK(src, .proc/cooldownreset), 50)
return ..()
/obj/item/toy/plushie/vox/proc/cooldownreset()
cooldown = 0