Files
Bubberstation/code/_onclick/hud/alien_larva.dm
SkyratBot 18eca27569 [MIRROR] update_appearance (#3508)
* update_appearance

* a

* a

Co-authored-by: TemporalOroboros <TemporalOroboros@gmail.com>
Co-authored-by: Gandalf2k15 <jzo123@hotmail.com>
2021-02-19 16:08:09 +00:00

38 lines
1.0 KiB
Plaintext

/datum/hud/larva
ui_style = 'icons/hud/screen_alien.dmi'
/datum/hud/larva/New(mob/owner)
..()
var/atom/movable/screen/using
action_intent = new /atom/movable/screen/combattoggle/flashy()
action_intent.hud = src
action_intent.icon = ui_style
action_intent.screen_loc = ui_combat_toggle
static_inventory += action_intent
healths = new /atom/movable/screen/healths/alien()
healths.hud = src
infodisplay += healths
alien_queen_finder = new /atom/movable/screen/alien/alien_queen_finder()
alien_queen_finder.hud = src
infodisplay += alien_queen_finder
pull_icon = new /atom/movable/screen/pull()
pull_icon.icon = 'icons/hud/screen_alien.dmi'
pull_icon.update_appearance()
pull_icon.screen_loc = ui_above_movement
pull_icon.hud = src
hotkeybuttons += pull_icon
using = new/atom/movable/screen/language_menu
using.screen_loc = ui_alien_language_menu
using.hud = src
static_inventory += using
zone_select = new /atom/movable/screen/zone_sel/alien()
zone_select.hud = src
zone_select.update_appearance()
static_inventory += zone_select