From 50ebfe143a0f6aec3b4a8d59e54be483ae517d0e Mon Sep 17 00:00:00 2001 From: YoureNotTheSharpest <107788621+YoureNotTheSharpest@users.noreply.github.com> Date: Fri, 30 May 2025 15:49:00 -0500 Subject: [PATCH] removes sterilizine and replace all mentions with spaceacilin (#29124) --- code/modules/crafting/recipes.dm | 4 ++-- code/modules/hydroponics/grown/kudzu.dm | 2 +- .../reagents/chemistry/reagents/medicine.dm | 20 ------------------- .../chemistry/recipes/medicine_reactions.dm | 9 +-------- 4 files changed, 4 insertions(+), 31 deletions(-) diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index 1301245c6b6..1cdcec593f9 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -1386,7 +1386,7 @@ result = list(/obj/item/stack/medical/bruise_pack) reqs = list(/obj/item/stack/medical/bruise_pack/improvised = 6, /datum/reagent/medicine/heal_on_apply/styptic_powder = 30, - /datum/reagent/medicine/sterilizine = 10) + /datum/reagent/medicine/spaceacillin = 10) category = CAT_MISC /datum/crafting_recipe/ointment @@ -1396,5 +1396,5 @@ reqs = list(/obj/item/stack/sheet/plastic = 2, /datum/reagent/water = 10, /datum/reagent/medicine/heal_on_apply/silver_sulfadiazine = 30, - /datum/reagent/medicine/sterilizine = 10) + /datum/reagent/medicine/spaceacillin = 10) category = CAT_MISC diff --git a/code/modules/hydroponics/grown/kudzu.dm b/code/modules/hydroponics/grown/kudzu.dm index 586c42115a4..7d0e54c60c3 100644 --- a/code/modules/hydroponics/grown/kudzu.dm +++ b/code/modules/hydroponics/grown/kudzu.dm @@ -51,7 +51,7 @@ /obj/item/seeds/kudzu/on_chem_reaction(datum/reagents/S) var/list/temp_mut_list = list() - if(S.has_reagent("sterilizine", 5)) + if(S.has_reagent("spaceacillin", 5)) for(var/datum/spacevine_mutation/SM as anything in mutations) if(initial(SM.quality) == SPACEVINE_MUTATION_NEGATIVE) temp_mut_list += SM diff --git a/code/modules/reagents/chemistry/reagents/medicine.dm b/code/modules/reagents/chemistry/reagents/medicine.dm index a9209ff92bd..de15877cc4f 100644 --- a/code/modules/reagents/chemistry/reagents/medicine.dm +++ b/code/modules/reagents/chemistry/reagents/medicine.dm @@ -29,26 +29,6 @@ var/update_flags = STATUS_UPDATE_HEALTH return ..() | update_flags -/datum/reagent/medicine/sterilizine - name = "Sterilizine" - id = "sterilizine" - description = "Sterilizes wounds in preparation for surgery." - reagent_state = LIQUID - color = "#C8A5DC" // rgb: 200, 165, 220 - taste_description = "antiseptic" - goal_difficulty = REAGENT_GOAL_EASY - - //makes you squeaky clean -/datum/reagent/medicine/sterilizine/reaction_mob(mob/living/M, method=REAGENT_TOUCH, volume) - if(method == REAGENT_TOUCH) - M.germ_level -= min(volume*20, M.germ_level) - -/datum/reagent/medicine/sterilizine/reaction_obj(obj/O, volume) - O.germ_level -= min(volume*20, O.germ_level) - -/datum/reagent/medicine/sterilizine/reaction_turf(turf/T, volume) - T.germ_level -= min(volume*20, T.germ_level) - /datum/reagent/medicine/synaptizine name = "Synaptizine" id = "synaptizine" diff --git a/code/modules/reagents/chemistry/recipes/medicine_reactions.dm b/code/modules/reagents/chemistry/recipes/medicine_reactions.dm index fe3915dbead..e41efaaaff1 100644 --- a/code/modules/reagents/chemistry/recipes/medicine_reactions.dm +++ b/code/modules/reagents/chemistry/recipes/medicine_reactions.dm @@ -36,13 +36,6 @@ required_reagents = list("carpotoxin" = 1, "spaceacillin" = 1, "copper" = 1) result_amount = 3 -/datum/chemical_reaction/sterilizine - name = "Sterilizine" - id = "sterilizine" - result = "sterilizine" - required_reagents = list("antihol" = 2, "chlorine" = 1) - result_amount = 3 - /datum/chemical_reaction/charcoal name = "Charcoal" id = "charcoal" @@ -285,7 +278,7 @@ name = "Degreaser" id = "degreaser" result = "degreaser" - required_reagents = list("oil" = 1, "sterilizine" = 1) + required_reagents = list("oil" = 1, "spaceacillin" = 1) result_amount = 2 /datum/chemical_reaction/liquid_solder