mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-11 15:14:27 +01:00
Adds emotes for multiple farm animals (#31733)
* added emotes for basic farm animals * added new emotes to keybinds * fixed some stuff
This commit is contained in:
@@ -100,3 +100,27 @@
|
||||
var/mob/living/simple_animal/pet/cat/C = user
|
||||
C.sit()
|
||||
return TRUE
|
||||
|
||||
/datum/emote/living/simple_animal/cow/moo
|
||||
key = "moo"
|
||||
key_third_person = "moos"
|
||||
message = "moos!"
|
||||
sound = "sound/creatures/cow.ogg"
|
||||
emote_type = EMOTE_AUDIBLE
|
||||
mob_type_allowed_typecache = list(/mob/living/basic/cow)
|
||||
|
||||
/datum/emote/living/simple_animal/chicken/cluck
|
||||
key = "cluck"
|
||||
key_third_person = "clucks"
|
||||
message = "clucks."
|
||||
sound = "sound/creatures/clucks.ogg"
|
||||
emote_type = EMOTE_AUDIBLE
|
||||
mob_type_allowed_typecache = list(/mob/living/basic/chicken)
|
||||
|
||||
/datum/emote/living/simple_animal/pig/oink
|
||||
key = "oink"
|
||||
key_third_person = "oinks"
|
||||
message = "oinks."
|
||||
sound = "sound/creatures/pig.ogg"
|
||||
emote_type = EMOTE_AUDIBLE
|
||||
mob_type_allowed_typecache = list(/mob/living/basic/pig)
|
||||
|
||||
Reference in New Issue
Block a user