mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-20 18:47:20 +01:00
11 lines
337 B
Plaintext
11 lines
337 B
Plaintext
/obj/item/implant/health
|
|
name = "health implant"
|
|
activated = FALSE
|
|
var/healthstring = ""
|
|
|
|
/obj/item/implant/health/proc/sensehealth()
|
|
if(!imp_in)
|
|
return "ERROR"
|
|
else
|
|
healthstring = "[round(imp_in.getOxyLoss())] - [round(imp_in.getFireLoss())] - [round(imp_in.getToxLoss())] - [round(imp_in.getBruteLoss())]"
|
|
return healthstring |