diff --git a/code/modules/mining/lavaland/ash_flora.dm b/code/modules/mining/lavaland/ash_flora.dm index 45c529401241..7eb5bb8fa10a 100644 --- a/code/modules/mining/lavaland/ash_flora.dm +++ b/code/modules/mining/lavaland/ash_flora.dm @@ -456,6 +456,7 @@ user.put_in_hands(result) to_chat(user, "You finish breaking [src]") +//So this really should have /datum/reagent/medicine/coagulant/seraka_extract = 0.02 but that's not in the codebase yet. I think we have to port a bunch of wound stuff from tg /obj/item/seeds/lavaland/seraka name = "pack of seraka mycelium" desc = "This mycelium grows into seraka mushrooms, a species of savoury mushrooms originally native to Tizira used in food and traditional medicine." @@ -465,7 +466,7 @@ product = /obj/item/reagent_containers/food/snacks/grown/ash_flora/seraka genes = list(/datum/plant_gene/trait/plant_type/fungal_metabolism, /datum/plant_gene/trait/fire_resistance) growing_icon = 'icons/obj/hydroponics/growing_mushrooms.dmi' - reagents_add = list(/datum/reagent/toxin/mushroom_powder = 0.1, /datum/reagent/medicine/coagulant/seraka_extract = 0.02) + reagents_add = list(/datum/reagent/toxin/mushroom_powder = 0.1) //CRAFTING diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm index 850bc2c6a75d..20e1240d7e01 100644 --- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm @@ -2139,19 +2139,3 @@ description = "Extra refreshing for those long desert days." color = "#af9938" taste_description = "root-beer and asbestos" - - -/datum/reagent/medicine/coagulant - name = "Coagulant" - description = "I will port this soon" -/datum/reagent/medicine/coagulant/seraka_extract - name = "Seraka Extract" - description = "A deeply coloured oil present in small amounts in Seraka Mushrooms. Acts as an effective blood clotting agent, but has a low overdose threshold." - color = "#00767C" - taste_description = "intensely savoury bitterness" - glass_name = "glass of seraka extract" - glass_desc = "Deeply savoury, bitter, and makes your blood clot up in your veins. A great drink, all things considered." - metabolization_rate = 0.2 * REAGENTS_METABOLISM - /*clot_rate = 0.4 //slightly better than regular coagulant - passive_bleed_modifier = 0.5*/ //There is no reason to eat seraka until coagulants ported - overdose_threshold = 10 //but easier to overdose on diff --git a/code/modules/reagents/chemistry/recipes/medicine.dm b/code/modules/reagents/chemistry/recipes/medicine.dm index e96172d26fe5..b2e275bc0631 100644 --- a/code/modules/reagents/chemistry/recipes/medicine.dm +++ b/code/modules/reagents/chemistry/recipes/medicine.dm @@ -340,7 +340,3 @@ WS End */ /datum/chemical_reaction/sand_bubbles/plasma // Subbing plasma bubbles for reg required_reagents = list(/datum/reagent/medicine/molten_bubbles/plasma = 3, /datum/reagent/silicon = 2) - -/datum/chemical_reaction/medicine/seraka_destroy //seraka extract is destroyed by sodium hydroxide - results = list(/datum/reagent/consumable/sugar = 1) - required_reagents = list(/datum/reagent/medicine/coagulant/seraka_extract = 1, /datum/reagent/lye = 1) diff --git a/icons/obj/food/spaghetti.dmi b/icons/obj/food/spaghetti.dmi index 7386f3ba3d48..2492416b95ca 100644 Binary files a/icons/obj/food/spaghetti.dmi and b/icons/obj/food/spaghetti.dmi differ