Teppi Plush (#8816)

This commit is contained in:
Guti
2024-08-23 00:09:58 +02:00
committed by GitHub
parent 007d996969
commit 5a51008d06
5 changed files with 24 additions and 3 deletions

View File

@@ -66,3 +66,21 @@
icon = 'icons/obj/toy_ch.dmi'
icon_state = "goldeasterndragon"
pokephrase = "Shine!"
/obj/item/toy/plushie/teppi
name = "teppi plushie"
desc = "A soft, fluffy plushie made out of real teppi fur!"
icon = 'icons/obj/toy_ch.dmi'
icon_state = "teppi"
pokephrase = "Gyooooooooh!"
/obj/item/toy/plushie/teppi/attack_self(mob/user as mob)
if(user.a_intent == I_HURT || user.a_intent == I_GRAB)
playsound(user, 'sound/voice/teppi/roar.ogg', 10, 0)
else
var/teppi_noise = pick(
'sound/voice/teppi/whine1.ogg',
'sound/voice/teppi/whine2.ogg')
playsound(user, teppi_noise, 10, 0)
src.visible_message(SPAN_NOTICE("Gyooooooooh!"))
return ..()