Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion code/modules/reagents/chemistry/recipes/medicine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,14 @@
/datum/chemical_reaction/medsuture
name = "Medicated Suture"
id = "med_suture"
mix_message = "The solution solidifies into a thin purple string."
required_reagents = list(/datum/reagent/cellulose = 10, /datum/reagent/toxin/formaldehyde = 20, /datum/reagent/medicine/polypyr = 15)

/datum/chemical_reaction/medsuture/alt
name = "Trek Suture"
id = "med_suture_alt"
required_reagents = list(/datum/reagent/medicine/bicaridine = 10, /datum/reagent/medicine/c2/probital = 20, /datum/reagent/medicine/spaceacillin = 10)

/datum/chemical_reaction/medsuture/on_reaction(datum/reagents/holder, created_volume)
var/location = get_turf(holder.my_atom)
for(var/i = 1, i <= created_volume, i++)
Expand All @@ -331,8 +337,14 @@
/datum/chemical_reaction/medmesh
name = "Advanced Mesh"
id = "adv_mesh"
mix_message = "The solution congeals into a small supply of easily portioned green gelatin."
required_reagents = list(/datum/reagent/cellulose = 20, /datum/reagent/consumable/aloejuice = 20, /datum/reagent/space_cleaner/sterilizine = 10)

/datum/chemical_reaction/medmesh/alt
name = "Trek Mesh"
id = "adv_mesh_alt"
required_reagents = list(/datum/reagent/medicine/kelotane = 10, /datum/reagent/medicine/c2/lenturi = 20, /datum/reagent/space_cleaner/sterilizine = 10)

/datum/chemical_reaction/medmesh/on_reaction(datum/reagents/holder, created_volume)
var/location = get_turf(holder.my_atom)
for(var/i = 1, i <= created_volume, i++)
Expand All @@ -341,14 +353,27 @@
/datum/chemical_reaction/poultice
name = "poultice"
id = "poultice"
mix_message = "The mixture produces an eerie green liquid."
required_reagents = list(/datum/reagent/toxin/amanitin = 10, /datum/reagent/cellulose = 20, /datum/reagent/consumable/aloejuice = 20)

/datum/chemical_reaction/poultice/alt
name = "poultice"
name = "tribal poultice"
id = "poultice_alt"
required_reagents = list(/datum/reagent/consumable/entpoly = 15, /datum/reagent/cellulose = 20, /datum/reagent/consumable/tinlux = 12)

/datum/chemical_reaction/poultice/on_reaction(datum/reagents/holder, created_volume)
var/location = get_turf(holder.my_atom)
for(var/i in 1 to created_volume)
new /obj/item/stack/medical/poultice(location)

/datum/chemical_reaction/bone_gel
id = "bone_gel"
required_reagents = list(/datum/reagent/consumable/milk = 10, /datum/reagent/carbon = 10) //good for bones and calcium
required_temp = 630
mob_react = FALSE
mix_message = "The solution congeals into a blue gel."

/datum/chemical_reaction/bone_gel/on_reaction(datum/reagents/holder, created_volume)
var/location = get_turf(holder.my_atom)
for(var/i in 1 to created_volume)
new /obj/item/stack/medical/bone_gel(location)