mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-20 23:21:20 +00:00
33 lines
518 B
Plaintext
33 lines
518 B
Plaintext
/decl/emote/slime
|
|
key = "nomood"
|
|
var/mood
|
|
|
|
/decl/emote/slime/do_extra(var/mob/living/simple_mob/slime/user)
|
|
. = ..()
|
|
if(istype(user))
|
|
user.mood = mood
|
|
user.update_icon()
|
|
|
|
/decl/emote/slime/check_user(var/atom/user)
|
|
return isslime(user)
|
|
|
|
/decl/emote/slime/pout
|
|
key = "pout"
|
|
mood = "pout"
|
|
|
|
/decl/emote/slime/sad
|
|
key = "sad"
|
|
mood = "sad"
|
|
|
|
/decl/emote/slime/angry
|
|
key = "angry"
|
|
mood = "angry"
|
|
|
|
/decl/emote/slime/frown
|
|
key = "frown"
|
|
mood = "mischevous"
|
|
|
|
/decl/emote/slime/smile
|
|
key = "smile"
|
|
mood = ":3"
|