Files
Paradise/code/game/objects/items/weapons/implants/health.dm
T
2018-04-15 16:25:56 -04:00

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