Adds a nian plushie (#17914)

* add nian plush

* comply with pr review suggestions

* changes pt 2
This commit is contained in:
BrickTheHooman
2022-06-07 11:37:05 +01:00
committed by GitHub
parent 5daa74a6e8
commit 4239b71037
3 changed files with 20 additions and 0 deletions
+16
View File
@@ -1093,6 +1093,22 @@
icon_state = "plushie_slime"
item_state = "plushie_slime"
/obj/item/toy/plushie/nianplushie
name = "nian plushie"
desc = "A silky nian plushie, straight from the nebula. Pull its antenna to hear it buzz!"
icon_state = "plushie_nian"
item_state = "plushie_nian"
var/cooldown = FALSE
/obj/item/toy/plushie/nianplushie/attack_self(mob/user)
if(cooldown)
return ..()
playsound(src, 'sound/voice/scream_moth.ogg', 10, 0)
visible_message("<span class='danger'>Buzzzz!</span>")
cooldown = TRUE
addtimer(VARSET_CALLBACK(src, cooldown, FALSE), 3 SECONDS)
/*
* Foam Armblade
*/