mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
31 lines
824 B
Plaintext
31 lines
824 B
Plaintext
/datum/hud/larva
|
|
ui_style = 'icons/mob/screen_alien.dmi'
|
|
|
|
/datum/hud/larva/New(mob/owner)
|
|
..()
|
|
var/obj/screen/using
|
|
|
|
using = new /obj/screen/act_intent/alien()
|
|
using.icon_state = mymob.a_intent
|
|
static_inventory += using
|
|
action_intent = using
|
|
|
|
healths = new /obj/screen/healths/alien()
|
|
infodisplay += healths
|
|
|
|
alien_queen_finder = new /obj/screen/alien/alien_queen_finder()
|
|
infodisplay += alien_queen_finder
|
|
pull_icon = new /obj/screen/pull()
|
|
pull_icon.icon = 'icons/mob/screen_alien.dmi'
|
|
pull_icon.update_icon(mymob)
|
|
pull_icon.screen_loc = ui_above_movement
|
|
hotkeybuttons += pull_icon
|
|
|
|
using = new/obj/screen/language_menu
|
|
using.screen_loc = ui_alien_language_menu
|
|
static_inventory += using
|
|
|
|
zone_select = new /obj/screen/zone_sel/alien()
|
|
zone_select.update_icon(mymob)
|
|
static_inventory += zone_select
|