mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-24 21:26:38 +01:00
25 lines
709 B
Plaintext
25 lines
709 B
Plaintext
#define ui_hunger_thirst "EAST-1:28,CENTER+1:51"
|
|
|
|
/atom/movable/screen/hunger
|
|
name = "hunger"
|
|
icon = 'modular_sand/icons/mob/screen_gen.dmi'
|
|
icon_state = "nutrition0"
|
|
screen_loc = ui_hunger_thirst
|
|
|
|
/atom/movable/screen/thirst
|
|
name = "thirst"
|
|
icon = 'modular_sand/icons/mob/screen_gen.dmi'
|
|
icon_state = "hydration0"
|
|
screen_loc = ui_hunger_thirst
|
|
|
|
/atom/movable/screen/healthdoll/Click(location, control, params)
|
|
var/mob/living/L = usr
|
|
usr.Click(L, control, params)
|
|
return FALSE //The health doll doesn't really do anything on it's own, change this if you need to
|
|
|
|
/atom/movable/screen/sanity
|
|
name = "sanity"
|
|
icon = 'modular_sand/icons/mob/sanity.dmi'
|
|
icon_state = "sanity3"
|
|
screen_loc = ui_mood
|