Skip to content

Commit

Permalink
add/fix unathi whip/s emote
Browse files Browse the repository at this point in the history
  • Loading branch information
Rerik007 committed Dec 18, 2023
1 parent add632e commit b725d9a
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
30 changes: 30 additions & 0 deletions modular_ss220/emotes/code/emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -328,3 +328,33 @@
'modular_ss220/emotes/audio/kidan/wiggles_kidan_2.ogg',
'modular_ss220/emotes/audio/kidan/wiggles_kidan_3.ogg')

/datum/emote/living/carbon/human/whip
key = "whip"
key_third_person = "whip"
message = "ударяет хвостом."
message_mime = "взмахивает хвостом и бесшумно опускает его на пол."
message_postfix = ", грозно смотря на %t."
message_param = EMOTE_PARAM_USE_POSTFIX
species_type_whitelist_typecache = list(/datum/species/unathi)
emote_type = EMOTE_AUDIBLE
volume = 75
audio_cooldown = 3 SECONDS
sound = 'modular_ss220/emotes/audio/unathi/whip_short_unathi.ogg'


/datum/emote/living/carbon/human/whip/whip_l
key = "whips"
key_third_person = "whips"
message = "хлестает хвостом."
species_type_whitelist_typecache = list(/datum/species/unathi)
audio_cooldown = 6 SECONDS
sound = 'modular_ss220/emotes/audio/unathi/whip_unathi.ogg'

/datum/emote/living/carbon/human/whip/can_run_emote(mob/user, status_check = TRUE, intentional)
if(!..())
return FALSE

if(!can_wag(user))
return FALSE

return TRUE
6 changes: 6 additions & 0 deletions modular_ss220/emotes/code/emote_panel_names.dm
Original file line number Diff line number Diff line change
Expand Up @@ -423,3 +423,9 @@

/datum/emote/living/carbon/human/wiggles
name = "Шевелить усики"

/datum/emote/living/carbon/human/whip
name = "Хлестать хвостом"

/datum/emote/living/carbon/human/whip/whip_l
name = "Ударять хвостом"

0 comments on commit b725d9a

Please sign in to comment.