mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Teppi Plush (#8816)
This commit is contained in:
@@ -100,7 +100,8 @@
|
||||
/obj/item/toy/plushie/purple_dragon,
|
||||
/obj/item/toy/plushie/white_eastdragon,
|
||||
/obj/item/toy/plushie/red_eastdragon,
|
||||
/obj/item/toy/plushie/green_eastdragon
|
||||
/obj/item/toy/plushie/green_eastdragon,
|
||||
/obj/item/toy/plushie/teppi
|
||||
//CHOMPStation Add End
|
||||
)
|
||||
name = "Plushies Crate"
|
||||
|
||||
@@ -74,7 +74,8 @@
|
||||
/obj/item/toy/plushie/white_eastdragon,
|
||||
/obj/item/toy/plushie/red_eastdragon,
|
||||
/obj/item/toy/plushie/green_eastdragon,
|
||||
/obj/item/toy/plushie/gold_eastdragon
|
||||
/obj/item/toy/plushie/gold_eastdragon,
|
||||
/obj/item/toy/plushie/teppi
|
||||
//CHOMPStation Add End
|
||||
)
|
||||
|
||||
|
||||
@@ -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 ..()
|
||||
|
||||
@@ -789,7 +789,8 @@
|
||||
/obj/item/toy/plushie/white_eastdragon,
|
||||
/obj/item/toy/plushie/red_eastdragon,
|
||||
/obj/item/toy/plushie/green_eastdragon,
|
||||
/obj/item/toy/plushie/gold_eastdragon)
|
||||
/obj/item/toy/plushie/gold_eastdragon,
|
||||
/obj/item/toy/plushie/teppi)
|
||||
//CHOMPStation Add End
|
||||
|
||||
/obj/random/plushielarge
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 14 KiB |
Reference in New Issue
Block a user