mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Damage tweaks
This commit is contained in:
@@ -1187,7 +1187,7 @@ var/using_new_click_proc = 0 //TODO ERRORAGE (This is temporary, while the DblCl
|
||||
if(PN)
|
||||
available = PN.avail
|
||||
A.damage = PN.get_electrocute_damage()
|
||||
if(available >= 4500000)
|
||||
if(available >= 5000000)
|
||||
A.damage = 205
|
||||
if(A.damage >= 200)
|
||||
usr:apply_damage(15, BURN, (usr:hand ? "l_hand" : "r_hand"))
|
||||
|
||||
@@ -358,10 +358,12 @@
|
||||
return min(rand(20,65),rand(20,65))
|
||||
if (1000 to 10000-1)
|
||||
return min(rand(10,20),rand(10,20))*/
|
||||
if (4000000 to INFINITY)
|
||||
return min(rand(80,180),rand(80,180))
|
||||
if (1000000 to 4000000)
|
||||
return min(rand(50,160),rand(50,160))
|
||||
if (5000000 to INFINITY)
|
||||
return min(rand(100,180),rand(100,180))
|
||||
if (4500000 to 5000000)
|
||||
return min(rand(80,160),rand(80,160))
|
||||
if (1000000 to 4500000)
|
||||
return min(rand(50,140),rand(50,140))
|
||||
if (200000 to 1000000)
|
||||
return min(rand(25,80),rand(25,80))
|
||||
if (100000 to 200000)//Ave powernet
|
||||
|
||||
Reference in New Issue
Block a user