mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-13 08:57:01 +01:00
Superior medicine is actually superior
Effective threshold increased from 25 to 30 Less effective healing increased to match basic healing chems
This commit is contained in:
@@ -288,10 +288,10 @@
|
||||
value = 4
|
||||
|
||||
/datum/reagent/medicine/oxandrolone/on_mob_life(mob/living/carbon/M)
|
||||
if(M.getFireLoss() > 25)
|
||||
if(M.getFireLoss() > 30)
|
||||
M.adjustFireLoss(-4*REM, 0) //Twice as effective as silver sulfadiazine for severe burns
|
||||
else
|
||||
M.adjustFireLoss(-0.5*REM, 0) //But only a quarter as effective for more minor ones
|
||||
M.adjustFireLoss(-2*REM, 0) //But only a quarter as effective for more minor ones
|
||||
..()
|
||||
. = 1
|
||||
|
||||
@@ -592,10 +592,10 @@ datum/reagent/medicine/styptic_powder/overdose_start(mob/living/M)
|
||||
|
||||
|
||||
/datum/reagent/medicine/sal_acid/on_mob_life(mob/living/carbon/M)
|
||||
if(M.getBruteLoss() > 25)
|
||||
if(M.getBruteLoss() > 30)
|
||||
M.adjustBruteLoss(-4*REM, 0) //Twice as effective as styptic powder for severe bruising
|
||||
else
|
||||
M.adjustBruteLoss(-0.5*REM, 0) //But only a quarter as effective for more minor ones
|
||||
M.adjustBruteLoss(-2*REM, 0) //But only a quarter as effective for more minor ones
|
||||
..()
|
||||
. = 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user