From 9f5d5880e1f81c5c4459a2b0c37069d16ebde5ff Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Fri, 17 Jul 2026 13:32:34 +0200 Subject: [PATCH] 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. --- .../Chemistry-Reagents/Chemistry-Reagents-Medicine.dm | 7 +++++++ html/changelogs/TendonOverdose.yml | 6 ++++++ 2 files changed, 13 insertions(+) create mode 100644 html/changelogs/TendonOverdose.yml diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm index c61c9d135e2..7453f6737d6 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm @@ -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("[M] 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." diff --git a/html/changelogs/TendonOverdose.yml b/html/changelogs/TendonOverdose.yml new file mode 100644 index 00000000000..b34b90bf82d --- /dev/null +++ b/html/changelogs/TendonOverdose.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Using butazoline in an overdose level or in cryo now permits it to heal tendons."