Nerfs adrenaline (#7668)

Currently adrenaline allows you to keep standing after quite a lot of inflicted pain. That's because, for some reason, it's equal to tramadol in low dosage. That's a big no-no.
This commit is contained in:
Matt Atlas
2019-12-16 20:14:30 +01:00
committed by Erki
parent 25c4da7095
commit 47633e184e
2 changed files with 45 additions and 3 deletions
@@ -1471,10 +1471,11 @@
if(alien == IS_DIONA)
return
if(dose < 1) //not that effective after initial rush
M.add_chemical_effect(CE_PAINKILLER, min(20*volume, 80))
M.add_chemical_effect(CE_PAINKILLER, min(15*volume, 35))
M.add_chemical_effect(CE_PULSE, 1)
M.add_chemical_effect(CE_PAINKILLER, min(10*volume, 20))
M.add_chemical_effect(CE_PULSE, 2)
else
M.add_chemical_effect(CE_PAINKILLER, min(10*volume, 15))
M.add_chemical_effect(CE_PULSE, 2)
if(dose > 5)
M.make_jittery(5)
if(volume >= 5 && M.is_asystole())