mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-26 17:11:52 +00:00
sex!
This commit is contained in:
@@ -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"]"
|
||||
|
||||
@@ -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))]"
|
||||
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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.")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user