Skip to content

Commit

Permalink
Added *bark for Anime trait
Browse files Browse the repository at this point in the history
  • Loading branch information
krimelizard committed Jan 14, 2024
1 parent 039857e commit 30118a3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions monkestation/code/modules/mob/living/emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,24 @@

/datum/emote/living/meow/get_sound(mob/living/user)
return pick('monkestation/sound/voice/feline/meow1.ogg', 'monkestation/sound/voice/feline/meow2.ogg', 'monkestation/sound/voice/feline/meow3.ogg', 'monkestation/sound/voice/feline/meow4.ogg')

/datum/emote/living/bark/can_run_emote(mob/user, status_check = TRUE, intentional = FALSE)
. = ..()
if(HAS_TRAIT(user, TRAIT_ANIME))
return TRUE
else
return FALSE
/datum/emote/living/bark
key = "bark"
key_third_person = "barks"
message = "barks!"
message_mime = "barks out silence!"
message_ipc = "makes a synthetic bark!"
message_param = "barks at %t!"
emote_type = EMOTE_VISIBLE | EMOTE_AUDIBLE
/datum/emote/living/bark/get_sound(mob/living/user)
if(HAS_TRAIT(user, TRAIT_CLUMSY))
return 'monkestation/sound/voice/feline/bark.ogg'
else
return pick('monkestation/sound/voice/feline/bark.ogg','monkestation/sound/voice/feline/bark2.ogg') // Yes, bark trait in feline folder [Bad To The Bone]

Binary file added monkestation/sound/voice/feline/bark.ogg
Binary file not shown.
Binary file added monkestation/sound/voice/feline/bark2.ogg
Binary file not shown.

0 comments on commit 30118a3

Please sign in to comment.