mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
## About The Pull Request Mending globule can no longer be cast if you don't have enough nutrition to do so. The ooze hud now inherits the living hud, meaning ooze mobs can see their health and all of the other stuff. <img width="1186" height="776" alt="image" src="https://github.com/user-attachments/assets/068cc22d-5721-4c90-ac38-bcdda9af9dcc" /> The combination of the nutrition display and the health doll is kinda ugly for now but probably better than nothing. The descriptions of shoolean grapes abilities now include the cost of the ability in question. ## Why It's Good For The Game Not being able to see how wounded you are is kinda bad, and being able to see that is kinda good. Knowing how much your abilities cost is good too. ## Changelog 🆑 qol: Ooze mobs from cytology now have the same type of HUD as other mobs, allowing them to see their health qol: The abilities of shoolean grapes now have their cost specified in their description fix: The mending globule ability used by shoolean grapes no longer can be cast while there isn't enough nutrition to do so /🆑
12 lines
473 B
Plaintext
12 lines
473 B
Plaintext
///Hud type with targeting dol and a nutrition bar
|
|
/datum/hud/living/ooze/initialize_screen_objects()
|
|
. = ..()
|
|
add_screen_object(/atom/movable/screen/zone_sel, HUD_MOB_ZONE_SELECTOR, HUD_GROUP_STATIC, ui_style)
|
|
add_screen_object(/atom/movable/screen/ooze_nutrition_display, HUD_OOZE_NUTRITION_DISPLAY)
|
|
|
|
/atom/movable/screen/ooze_nutrition_display
|
|
icon = 'icons/hud/screen_alien.dmi'
|
|
icon_state = "power_display"
|
|
name = "nutrition"
|
|
screen_loc = ui_alienplasmadisplay
|