Files
Yogstation/code/_onclick/hud/blobbernauthud.dm
Nerd Lord eff82be81a Blobbernauts now die slowly when not near the blob.
Blobbernauts can now see their overmind's core health via their HUD.
Blobbernauts can also see their health from their HUD.
Blobbernauts are somewhat resistant to spacewind.
2016-02-29 16:41:59 -05:00

14 lines
347 B
Plaintext

/datum/hud/blobbernaut/New(mob/owner)
..()
blobpwrdisplay = new /obj/screen/healths/blob/naut/core()
infodisplay += blobpwrdisplay
healths = new /obj/screen/healths/blob/naut()
infodisplay += healths
/mob/living/simple_animal/hostile/blob/blobbernaut/create_mob_hud()
if(client && !hud_used)
hud_used = new /datum/hud/blobbernaut(src)