mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
* update_appearance * a * a Co-authored-by: TemporalOroboros <TemporalOroboros@gmail.com> Co-authored-by: Gandalf2k15 <jzo123@hotmail.com>
20 lines
679 B
Plaintext
20 lines
679 B
Plaintext
///Hud type with targetting dol and a nutrition bar
|
|
/datum/hud/ooze/New(mob/living/owner)
|
|
. = ..()
|
|
|
|
zone_select = new /atom/movable/screen/zone_sel()
|
|
zone_select.icon = ui_style
|
|
zone_select.hud = src
|
|
zone_select.update_appearance()
|
|
static_inventory += zone_select
|
|
|
|
alien_plasma_display = new /atom/movable/screen/ooze_nutrition_display //Just going to use the alien plasma display because making new vars for each object is braindead.
|
|
alien_plasma_display.hud = src
|
|
infodisplay += alien_plasma_display
|
|
|
|
/atom/movable/screen/ooze_nutrition_display
|
|
icon = 'icons/hud/screen_alien.dmi'
|
|
icon_state = "power_display"
|
|
name = "nutrition"
|
|
screen_loc = ui_alienplasmadisplay
|