removes sterilizine and replace all mentions with spaceacilin (#29124)

This commit is contained in:
YoureNotTheSharpest
2025-05-30 20:49:00 +00:00
committed by GitHub
parent 9cb55b2970
commit 50ebfe143a
4 changed files with 4 additions and 31 deletions
+2 -2
View File
@@ -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
+1 -1
View File
@@ -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
@@ -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"
@@ -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