mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
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.
14 lines
347 B
Plaintext
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)
|