From 09cc5887c5379fbb8d899fd680cea9753936c5a0 Mon Sep 17 00:00:00 2001 From: Camriod_Core Date: Sat, 2 Nov 2024 23:25:12 -0500 Subject: [PATCH] Basic ooze changes. had a ton of foods and shit made but decided its too ambitious for me. Theyve been removed from this PR --- .../mob/living/carbon/human/species_type/oozeling.dm | 7 ++++--- monkestation/code/modules/reagents/recipes/medical.dm | 5 +++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/monkestation/code/modules/mob/living/carbon/human/species_type/oozeling.dm b/monkestation/code/modules/mob/living/carbon/human/species_type/oozeling.dm index 1a2948ec05a1..023c14ea1677 100644 --- a/monkestation/code/modules/mob/living/carbon/human/species_type/oozeling.dm +++ b/monkestation/code/modules/mob/living/carbon/human/species_type/oozeling.dm @@ -33,6 +33,7 @@ //swimming_component = /datum/component/swimming/dissolve toxic_food = NONE disliked_food = NONE + liked_food = TOXIC bodypart_overrides = list( BODY_ZONE_L_ARM = /obj/item/bodypart/arm/left/oozeling, @@ -242,7 +243,7 @@ list( SPECIES_PERK_TYPE = SPECIES_POSITIVE_PERK, SPECIES_PERK_ICON = "burn", - SPECIES_PERK_NAME = "incombustible", + SPECIES_PERK_NAME = "Incombustible", SPECIES_PERK_DESC = "[plural_form] cannot be set aflame.", ), list( @@ -266,8 +267,8 @@ list( SPECIES_PERK_TYPE = SPECIES_NEGATIVE_PERK, SPECIES_PERK_ICON = "tint", - SPECIES_PERK_NAME = "Liquid Being", - SPECIES_PERK_DESC = "[plural_form] will melt away when in contact with water.", + SPECIES_PERK_NAME = "Water Soluble", + SPECIES_PERK_DESC = "[plural_form] will dissolve when in contact with water.", ), list( SPECIES_PERK_TYPE = SPECIES_NEGATIVE_PERK, diff --git a/monkestation/code/modules/reagents/recipes/medical.dm b/monkestation/code/modules/reagents/recipes/medical.dm index e720811c02e8..d38c8f2a313e 100644 --- a/monkestation/code/modules/reagents/recipes/medical.dm +++ b/monkestation/code/modules/reagents/recipes/medical.dm @@ -9,3 +9,8 @@ results = list(/datum/reagent/medicine/system_cleaner = 4) required_reagents = list(/datum/reagent/consumable/ethanol = 1, /datum/reagent/chlorine = 1, /datum/reagent/phenol = 2, /datum/reagent/potassium = 1) reaction_tags = REACTION_TAG_EASY | REACTION_TAG_HEALING | REACTION_TAG_OTHER + +/datum/chemical_reaction/medicine/pyroxadone/alt + results = list(/datum/reagent/medicine/pyroxadone = 2) + required_reagents = list(/datum/reagent/medicine/cryoxadone = 1, /datum/reagent/toxin/slimeooze = 1) + reaction_tags = REACTION_TAG_EASY | REACTION_TAG_HEALING | REACTION_TAG_BRUTE |REACTION_TAG_BURN | REACTION_TAG_TOXIN | REACTION_TAG_OXY | REACTION_TAG_CLONE