mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-30 00:35:45 +01:00
33 lines
527 B
Plaintext
33 lines
527 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 = "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"
|