Skip to content

Commit

Permalink
Adds the *chirp emote from nymphs to Diona (#28464)
Browse files Browse the repository at this point in the history
* Add chirp to diona

* Make chirps have age-based pitch
  • Loading branch information
ExusA authored Mar 5, 2025
1 parent d26d02f commit 92ce115
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/datums/keybindings/emote_keybinds.dm
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,10 @@
linked_emote = /datum/emote/living/carbon/human/creak
name = "Creak"

/datum/keybinding/emote/carbon/human/diona_chirp
linked_emote = /datum/emote/living/carbon/human/diona_chirp
name = "Chirp (Diona)"

/datum/keybinding/emote/carbon/human/squish
linked_emote = /datum/emote/living/carbon/human/slime/squish
name = "Squish"
Expand Down
10 changes: 10 additions & 0 deletions code/modules/mob/living/carbon/human/human_emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,16 @@
species_type_whitelist_typecache = list(/datum/species/diona)
sound = "sound/voice/dionatalk1.ogg"

/datum/emote/living/carbon/human/diona_chirp
key = "chirp"
key_third_person = "chirps"
message = "chirps!"
message_param = "chirps at %t."
emote_type = EMOTE_AUDIBLE
age_based = TRUE
species_type_whitelist_typecache = list(/datum/species/diona)
sound = "sound/creatures/nymphchirp.ogg"

/datum/emote/living/carbon/human/slime


Expand Down

0 comments on commit 92ce115

Please sign in to comment.