Adds vox-themed plushie. (#12745)

This commit is contained in:
Lumi
2019-12-18 14:32:24 +11:00
committed by variableundefined
parent 0ea89b98d1
commit e6090ea530
2 changed files with 16 additions and 0 deletions
+16
View File
@@ -1069,6 +1069,22 @@ obj/item/toy/cards/deck/syndicate/black
name = "tuxedo cat plushie"
icon_state = "tuxedocat"
/obj/item/toy/plushie/voxplushie
name = "vox plushie"
desc = "A stitched-together vox, fresh from the skipjack. Press its belly to hear it skree!"
icon_state = "plushie_vox"
item_state = "plushie_vox"
var/cooldown = 0
/obj/item/toy/plushie/voxplushie/attack_self(mob/user)
if(!cooldown)
playsound(user, 'sound/voice/shriek1.ogg', 10, 0)
visible_message("<span class='danger'>Skreee!</span>")
cooldown = 1
spawn(30) cooldown = 0
return
..()
//New generation TG plushies
/obj/item/toy/plushie/lizardplushie