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:
Casper3667
2026-07-17 11:32:34 +00:00
committed by GitHub
parent 87da794c48
commit 9f5d5880e1
2 changed files with 13 additions and 0 deletions
@@ -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."