This commit is contained in:
NullFag
2023-03-07 17:58:03 +01:00
parent 10314755be
commit 9dc3351d5f
4 changed files with 4 additions and 4 deletions

View File

@@ -200,5 +200,5 @@
/mob/living/basic/get_status_tab_items()
. = ..()
. += "Health: [round((health / maxHealth) * 100)]%"
. += "Health: [round((health / maxHealth) * 100)]% ([health]/[maxHealth])"
. += "Combat Mode: [combat_mode ? "On" : "Off"]"

View File

@@ -329,7 +329,7 @@ GLOBAL_LIST_EMPTY(parasites) //all currently existing/living guardians
. += ..()
if(summoner)
var/healthpercent = health_percentage(summoner)
. += "Summoner Health: [round(healthpercent, 0.5)]%"
. += "Summoner Health: [round(healthpercent, 0.5)]% ([summoner.health]/[summoner.maxHealth])"
if(!COOLDOWN_FINISHED(src, manifest_cooldown))
. += "Manifest/Recall Cooldown Remaining: [DisplayTimeText(COOLDOWN_TIMELEFT(src, manifest_cooldown))]"

View File

@@ -450,7 +450,7 @@
/mob/living/simple_animal/get_status_tab_items()
. = ..()
. += "Health: [round((health / maxHealth) * 100)]%"
. += "Health: [round((health / maxHealth) * 100)]% ([health]/[maxHealth])"
. += "Combat Mode: [combat_mode ? "On" : "Off"]"
/mob/living/simple_animal/proc/drop_loot()

View File

@@ -173,7 +173,7 @@
/mob/living/silicon/pai/get_status_tab_items()
. += ..()
if(!stat)
. += text("Emitter Integrity: [holochassis_health * (100 / HOLOCHASSIS_MAX_HEALTH)].")
. += text("Emitter Integrity: [holochassis_health * (100 / HOLOCHASSIS_MAX_HEALTH)]% ([holochassis_health]/[HOLOCHASSIS_MAX_HEALTH]).")
else
. += text("Systems nonfunctional.")