From ad37ec08b2a1876dc6abff95309eebae2ce352e3 Mon Sep 17 00:00:00 2001 From: Fermi Date: Thu, 4 Jul 2019 23:24:18 +0100 Subject: [PATCH] Removing slimejelly req from feedback. --- code/modules/mob/living/carbon/human/examine.dm | 7 +++++++ code/modules/reagents/chemistry/holder.dm | 4 +++- .../code/modules/reagents/chemistry/recipes/fermi.dm | 8 ++++---- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index b6287bdcfa..9a2f6255cd 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -304,6 +304,13 @@ msg += "" + var/obj/item/organ/vocal_cords/Vc = getorganslot(ORGAN_SLOT_VOICE) + if(Vc) + if (Vc.name == "Velvet chords") + if(user.client?.prefs.lewdchem) + msg += "You feel your chords resonate looking at them." + + if(!appears_dead) if(stat == UNCONSCIOUS) msg += "[t_He] [t_is]n't responding to anything around [t_him] and seem[p_s()] to be asleep.\n" diff --git a/code/modules/reagents/chemistry/holder.dm b/code/modules/reagents/chemistry/holder.dm index 6a30a6eef5..2bca1fc031 100644 --- a/code/modules/reagents/chemistry/holder.dm +++ b/code/modules/reagents/chemistry/holder.dm @@ -494,6 +494,8 @@ //Standard reaction mechanics: else + if (C.FermiChem == TRUE)//Just to make sure + return 0 for(var/B in cached_required_reagents) // multiplier = min(multiplier, round((get_reagent_amount(B) / cached_required_reagents[B]), 0.01)) @@ -810,7 +812,7 @@ if(!isnum(amount) || !amount) return FALSE - if(amount <= 0) + if(amount <= 0.00) return FALSE var/datum/reagent/D = GLOB.chemical_reagents_list[reagent] diff --git a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm index a673205482..59037d80c4 100644 --- a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm +++ b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm @@ -103,7 +103,7 @@ name = "Synthetic-derived growth factor" id = "SDGF" results = list("SDGF" = 0.3) - required_reagents = list("stable_plasma" = 0.15, "slimejelly" = 0.15, "uranium" = 0.15, "synthflesh" = 0.15, "blood" = 0.15) + required_reagents = list("stable_plasma" = 0.15, "clonexadone" = 0.15, "uranium" = 0.15, "synthflesh" = 0.15) mix_message = "the reaction gives off a blorble!" required_temp = 1 //FermiChem vars: @@ -318,7 +318,7 @@ name = "Hat growth serum" id = "hatmium" results = list("hatmium" = 0.5) - required_reagents = list("whiskey" = 0.1, "nutriment" = 0.3, "cooking_oil" = 0.2, "iron" = 0.1, "gold" = 0.3) + required_reagents = list("ethanol" = 0.1, "nutriment" = 0.3, "cooking_oil" = 0.2, "iron" = 0.1, "gold" = 0.3) //mix_message = "" //FermiChem vars: OptimalTempMin = 500 @@ -456,8 +456,8 @@ name = "secretcatchem" id = "secretcatchem" results = list("secretcatchem" = 0.5) - required_reagents = list("stable_plasma" = 0.1, "sugar" = 0.1, "cream" = 0.1, "blood" = 0.1, "slimejelly" = 0.1)//Yes this will make a plushie if you don't lucky guess. It'll eat all your reagents too. - required_catalysts = list("felinidmutationtoxin" = 1) + required_reagents = list("stable_plasma" = 0.1, "sugar" = 0.1, "cream" = 0.1, "clonexadone" = 0.1)//Yes this will make a plushie if you don't lucky guess. It'll eat all your reagents too. + required_catalysts = list("SDGF" = 1) required_temp = 600 mix_message = "the reaction gives off a meow!" mix_sound = "modular_citadel/sound/voice/merowr.ogg"