diff --git a/Resources/Locale/en-US/reagents/meta/biological.ftl b/Resources/Locale/en-US/reagents/meta/biological.ftl index 0d179c4d4f20..6cc56e4e32f4 100644 --- a/Resources/Locale/en-US/reagents/meta/biological.ftl +++ b/Resources/Locale/en-US/reagents/meta/biological.ftl @@ -33,3 +33,9 @@ reagent-desc-grey-matter = Thought juice, the stuff that leaks out of your ears. reagent-name-mucin = mucin reagent-desc-mucin = A fascinating secretion capable of accelerating the movement of anyone walking on it. + +reagent-name-testosterone = testosterone +reagent-desc-testosterone = A fundamental bodily hormone, synthesized from plant matter for pharmaceutical distribution. + +reagent-name-estradiol = estradiol +reagent-desc-estradiol = A fundamental bodily hormone, synthesized from cell matter for pharmaceutical distribution. \ No newline at end of file diff --git a/Resources/Prototypes/Reagents/fun.yml b/Resources/Prototypes/Reagents/fun.yml index f1d05d9e6c28..bbff340e3413 100644 --- a/Resources/Prototypes/Reagents/fun.yml +++ b/Resources/Prototypes/Reagents/fun.yml @@ -417,3 +417,18 @@ type: Remove tileReactions: - !type:SpillTileReaction + + # These two dont actually do anything, theyre just here for rp +- type: reagent + id: Estradiol + name: reagent-name-estradiol + desc: reagent-desc-estradiol + physicalDesc: reagent-physical-desc-clear + color: "pink" + +- type: reagent + id: Testosterone + name: reagent-name-testosterone + desc: reagent-desc-testosterone + physicalDesc: reagent-physical-desc-chalky + color: "#267ef0" \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index 537a792e8596..15bedefa7237 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -501,3 +501,29 @@ amount: 1 products: Tazinide: 1 + +- type: reaction + id: Estradiol + impact: Medium + reactants: + Hydroxide: + amount: 2 + Potassium: + amount: 1 + Protein: + amount: 2 + products: + Estradiol: 5 + +- type: reaction + id: Testosterone + impact: Medium + reactants: + Hydroxide: + amount: 2 + Potassium: + amount: 1 + Nutriment: + amount: 2 + products: + Testosterone: 5 \ No newline at end of file