Merge pull request #13597 from Runa-Dacino/neural-hyperbuff

Significantly buffs the impact of "Neural Hypersensitivty"
This commit is contained in:
Casey
2022-08-28 17:42:57 -04:00
committed by CHOMPStation2
parent eb55c960fd
commit b65fa4d939
3 changed files with 8 additions and 2 deletions

View File

@@ -40,6 +40,9 @@
if(dam > maxdam && (maxdam == 0 || prob(70)) )
damaged_organ = E
maxdam = dam
if(istype(src, /mob/living/carbon/human)) //VOREStation Edit Start
var/mob/living/carbon/human/H = src
maxdam *= H.species.trauma_mod //VOREStation edit end
if(damaged_organ && chem_effects[CE_PAINKILLER] < maxdam)
if(maxdam > 10 && paralysis)
AdjustParalysis(-round(maxdam/10))