mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-23 15:38:08 +00:00
* update_appearance * a * a Co-authored-by: TemporalOroboros <TemporalOroboros@gmail.com> Co-authored-by: Gandalf2k15 <jzo123@hotmail.com>
21 lines
544 B
Plaintext
21 lines
544 B
Plaintext
/datum/hud/living
|
|
ui_style = 'icons/hud/screen_gen.dmi'
|
|
|
|
/datum/hud/living/New(mob/living/owner)
|
|
..()
|
|
|
|
pull_icon = new /atom/movable/screen/pull()
|
|
pull_icon.icon = ui_style
|
|
pull_icon.update_appearance()
|
|
pull_icon.screen_loc = ui_living_pull
|
|
pull_icon.hud = src
|
|
static_inventory += pull_icon
|
|
|
|
combo_display = new /atom/movable/screen/combo()
|
|
infodisplay += combo_display
|
|
|
|
//mob health doll! assumes whatever sprite the mob is
|
|
healthdoll = new /atom/movable/screen/healthdoll/living()
|
|
healthdoll.hud = src
|
|
infodisplay += healthdoll
|