mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Teppi Plush (#8816)
This commit is contained in:
@@ -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 ..()
|
||||
|
||||
Reference in New Issue
Block a user