mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 12:43:13 +00:00
Improved full body scanner infection readout
Now provides a higher level of precision on infection severity.
This commit is contained in:
@@ -309,10 +309,18 @@
|
|||||||
if(e.open)
|
if(e.open)
|
||||||
open = "Open:"
|
open = "Open:"
|
||||||
switch (e.germ_level)
|
switch (e.germ_level)
|
||||||
if (INFECTION_LEVEL_ONE + 50 to INFECTION_LEVEL_TWO)
|
if (INFECTION_LEVEL_ONE to INFECTION_LEVEL_ONE + 200)
|
||||||
infected = "Mild Infection:"
|
infected = "Mild Infection:"
|
||||||
if (INFECTION_LEVEL_TWO to INFECTION_LEVEL_THREE)
|
if (INFECTION_LEVEL_ONE + 200 to INFECTION_LEVEL_ONE + 300)
|
||||||
|
infected = "Mild Infection+:"
|
||||||
|
if (INFECTION_LEVEL_ONE + 300 to INFECTION_LEVEL_ONE + 400)
|
||||||
|
infected = "Mild Infection++:"
|
||||||
|
if (INFECTION_LEVEL_TWO to INFECTION_LEVEL_TWO + 200)
|
||||||
infected = "Acute Infection:"
|
infected = "Acute Infection:"
|
||||||
|
if (INFECTION_LEVEL_TWO + 200 to INFECTION_LEVEL_TWO + 300)
|
||||||
|
infected = "Acute Infection+:"
|
||||||
|
if (INFECTION_LEVEL_TWO + 300 to INFECTION_LEVEL_TWO + 400)
|
||||||
|
infected = "Acute Infection++:"
|
||||||
if (INFECTION_LEVEL_THREE to INFINITY)
|
if (INFECTION_LEVEL_THREE to INFINITY)
|
||||||
infected = "Septic:"
|
infected = "Septic:"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user