yeee
This commit is contained in:
BongaTheProto
2023-01-15 16:51:04 -05:00
parent d5342d4648
commit 5e784f40b7
4 changed files with 26 additions and 0 deletions

View File

@@ -20,3 +20,11 @@
icon = 'modular_splurt/icons/obj/plushes.dmi' icon = 'modular_splurt/icons/obj/plushes.dmi'
icon_state = "plushie_mal0" icon_state = "plushie_mal0"
item_state = "plushie_mal0" item_state = "plushie_mal0"
/obj/item/toy/plush/nobl
name = "Nobl plushie"
desc = "It seems to be a small canine, not necessarily latex like you would suspect for some reason, but extremely squishy."
icon = 'modular_splurt/icons/obj/plushes.dmi'
icon_state = "nobl_plush"
item_state = "nobl_plush"
squeak_override = list('modular_splurt/sound/misc/dog_toy.ogg' = 1)

View File

@@ -911,3 +911,21 @@
key = "facehoof" // For horse enthusiasts key = "facehoof" // For horse enthusiasts
key_third_person = "facehoofs" key_third_person = "facehoofs"
metacarpus_type = "hoof" metacarpus_type = "hoof"
/datum/emote/living/poyo
key = "poyo"
key_third_person = "poyos"
message = "%SAYS, \"Poyo!\""
emote_type = EMOTE_AUDIBLE
/datum/emote/living/poyo/run_emote(mob/user, params, type_override, intentional)
var/datum/dna/D = user.has_dna()
var/say_mod = (D ? D.species.say_mod : "says")
message = replacetextEx(message, "%SAYS", say_mod)
. = ..()
if(!.)
return
if(user.nextsoundemote >= world.time)
return
user.nextsoundemote = world.time + 1 SECONDS
playsound(user, 'modular_splurt/sound/voice/barks/poyo.ogg', 50, 1, -1)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.