mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-06 07:22:42 +00:00
Merge pull request #680 from Erthilo/master
Medical changes, increased vending points, virus dish fix.
This commit is contained in:
@@ -22,20 +22,30 @@
|
||||
switch(health)
|
||||
if(100 to INFINITY)
|
||||
return "health100"
|
||||
if(70 to 100)
|
||||
if(90 to 100)
|
||||
return "health90"
|
||||
if(80 to 90)
|
||||
return "health80"
|
||||
if(50 to 70)
|
||||
if(70 to 80)
|
||||
return "health70"
|
||||
if(60 to 70)
|
||||
return "health60"
|
||||
if(30 to 50)
|
||||
if(50 to 60)
|
||||
return "health50"
|
||||
if(40 to 50)
|
||||
return "health40"
|
||||
if(18 to 30)
|
||||
return "health25"
|
||||
if(5 to 18)
|
||||
if(30 to 40)
|
||||
return "health30"
|
||||
if(20 to 30)
|
||||
return "health20"
|
||||
if(10 to 20)
|
||||
return "health10"
|
||||
if(1 to 5)
|
||||
if(0 to 10)
|
||||
return "health1"
|
||||
if(-99 to 0)
|
||||
return "health0"
|
||||
if(-50 to 0)
|
||||
return "health-50"
|
||||
if(-99 to -50)
|
||||
return "health-99"
|
||||
else
|
||||
return "health-100"
|
||||
return "0"
|
||||
|
||||
Reference in New Issue
Block a user