mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 21:12:24 +01:00
Butazoline can now heal tendons in certain cases (#22841)
Requested by a pharmacist player for when there are no surgeons or physicians around. Butazoline can now fix tendons in the same conditions as bicaridine can fix arterials.
This commit is contained in:
@@ -71,6 +71,13 @@
|
||||
M.add_chemical_effect(CE_ITCH, M.chem_doses[type])
|
||||
M.adjustHydrationLoss(1*removed)
|
||||
|
||||
if(((M.chem_doses[type] > 30) && prob(2)) || ((M.bodytemperature < 189) && prob(10))) //Butazoline treats torn tendons when dose is greater than 30u. Alternatively, if the drug is used in a cryotube.
|
||||
var/mob/living/carbon/human/H = M
|
||||
for(var/obj/item/organ/external/E in H.organs)
|
||||
if(E.status & TENDON_CUT)
|
||||
E.status &= ~TENDON_CUT
|
||||
M.visible_message("<b>[M]</b> spasms!", SPAN_DANGER("You feel a stabbing pain in your [E.name]!"))
|
||||
|
||||
/singleton/reagent/kelotane
|
||||
name = "Kelotane"
|
||||
description = "Kelotane is a complex medication which specifically targets tissues which have been lost to severe burning by encouraging the rate at which these damaged tissues are regenerated."
|
||||
|
||||
Reference in New Issue
Block a user