* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
32 lines
875 B
Plaintext
32 lines
875 B
Plaintext
/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_pull_resist
|
|
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
|
|
|
|
/mob/living/carbon/alien/larva/create_mob_hud()
|
|
if(client && !hud_used)
|
|
hud_used = new /datum/hud/larva(src)
|