mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 01:34:01 +00:00
43 lines
1.2 KiB
Plaintext
43 lines
1.2 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
|
|
|
|
using = new /atom/movable/screen/navigate
|
|
using.screen_loc = ui_alien_navigate_menu
|
|
using.hud = src
|
|
static_inventory += using
|