mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
33 lines
532 B
Plaintext
33 lines
532 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/mob_can_use(var/atom/user)
|
|
return ..() && isslime(user)
|
|
|
|
/decl/emote/slime/pout
|
|
key = "mpout"
|
|
mood = "pout"
|
|
|
|
/decl/emote/slime/sad
|
|
key = "msad"
|
|
mood = "sad"
|
|
|
|
/decl/emote/slime/angry
|
|
key = "mangry"
|
|
mood = "angry"
|
|
|
|
/decl/emote/slime/frown
|
|
key = "mfrown"
|
|
mood = "mischevous"
|
|
|
|
/decl/emote/slime/smile
|
|
key = "msmile"
|
|
mood = ":3"
|