mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 12:08:28 +01:00
Buffs Adranol Healing
🆑 tweak - Buff Adranol healing. /🆑 Suggested by Tempest, and upon examination of related code, having it at eights makes reduction of peridaxon-caused eye blurriness or jitteriness reductions take long than one might like since ya can't even see how much Adranol you'd need. This'll just make it more evened out and a bit quicker.
This commit is contained in:
@@ -13,9 +13,9 @@
|
||||
if(M.confused)
|
||||
M.Confuse(-8*removed)
|
||||
if(M.eye_blurry)
|
||||
M.eye_blurry = max(M.eye_blurry - 8*removed, 0)
|
||||
M.eye_blurry = max(M.eye_blurry - 25*removed, 0)
|
||||
if(M.jitteriness)
|
||||
M.make_jittery(max(M.jitteriness - 8*removed,0))
|
||||
M.make_jittery(max(M.jitteriness - 25*removed,0))
|
||||
|
||||
/datum/reagent/numbing_enzyme
|
||||
name = "Numbing Enzyme"
|
||||
@@ -91,4 +91,4 @@
|
||||
|
||||
/datum/reagent/sleevingcure/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
M.remove_a_modifier_of_type(/datum/modifier/resleeving_sickness)
|
||||
M.remove_a_modifier_of_type(/datum/modifier/faux_resleeving_sickness)
|
||||
M.remove_a_modifier_of_type(/datum/modifier/faux_resleeving_sickness)
|
||||
|
||||
Reference in New Issue
Block a user