mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-12 15:47:04 +01:00
5926589c16
* removes var/ inside all procs * . * ugh
33 lines
572 B
Plaintext
33 lines
572 B
Plaintext
/datum/decl/emote/slime
|
|
key = "nomood"
|
|
var/mood
|
|
|
|
/datum/decl/emote/slime/do_extra(mob/living/simple_mob/slime/user)
|
|
. = ..()
|
|
if(istype(user))
|
|
user.mood = mood
|
|
user.update_icon()
|
|
|
|
/datum/decl/emote/slime/mob_can_use(atom/user)
|
|
return ..() && isslime(user)
|
|
|
|
/datum/decl/emote/slime/pout
|
|
key = "mpout"
|
|
mood = "pout"
|
|
|
|
/datum/decl/emote/slime/sad
|
|
key = "msad"
|
|
mood = "sad"
|
|
|
|
/datum/decl/emote/slime/angry
|
|
key = "mangry"
|
|
mood = "angry"
|
|
|
|
/datum/decl/emote/slime/frown
|
|
key = "mfrown"
|
|
mood = "mischevous"
|
|
|
|
/datum/decl/emote/slime/smile
|
|
key = "msmile"
|
|
mood = ":3"
|