diff --git a/Resources/Locale/en-US/_Persistence14/reagents.ftl b/Resources/Locale/en-US/_Persistence14/reagents.ftl index 95129f9a96..de197305b3 100644 --- a/Resources/Locale/en-US/_Persistence14/reagents.ftl +++ b/Resources/Locale/en-US/_Persistence14/reagents.ftl @@ -6,6 +6,13 @@ reagent-desc-mnemosyne = The distilled essence of memory and identity. reagent-name-polycider = Polycider Elixir reagent-desc-polycider = 3/10 wizard schools recommend this elixir for all your shapeshifting needs. +# MEDICINE # +reagent-name-pyronitrodone = pyronitrodone +reagent-desc-pyronitrodone = A chemical used as a base for pyrogenics, can burn out toxins from the system on it's own. + +reagent-name-noxapyrone = noxapyrone +reagent-desc-noxapyrone = A pyrogenic that slowly kills off effects of radiation in patients. Can be used on dead. + # NARCOTICS # reagent-name-nectar = nectar reagent-desc-nectar = A mysterious, highly reactive sustance extracted from ambrosia deus. Causes intoxication and hallucinations in living creatures, but be careful of overdosing... diff --git a/Resources/Prototypes/_Persistence14/Reagents/medicine.yml b/Resources/Prototypes/_Persistence14/Reagents/medicine.yml new file mode 100644 index 0000000000..429e720213 --- /dev/null +++ b/Resources/Prototypes/_Persistence14/Reagents/medicine.yml @@ -0,0 +1,39 @@ +- type: reagent + id: Pyronitrodone + name: reagent-name-pyronitrodone + group: Medicine + desc: reagent-desc-pyronitrodone + physicalDesc: reagent-physical-desc-fizzy + flavor: medicine + color: "#f2773a" + metabolisms: + Bloodstream: + effects: + - !type:HealthChange + conditions: + - !type:TemperatureCondition + min: 335.0 + damage: + types: + Heat: -3 + Poison: -4 +- type: reagent + id: Noxapyrone + name: reagent-name-noxapyrone + group: Medicine + desc: reagent-desc-noxapyrone + physicalDesc: reagent-physical-desc-cloudy + flavor: medicine + color: "#371f4f" + worksOnTheDead: true + metabolisms: + Bloodstream: + effects: + - !type:HealthChange + conditions: + - !type:TemperatureCondition + min: 350.0 + damage: + types: + Heat: -2 + Radiation: -2 \ No newline at end of file diff --git a/Resources/Prototypes/_Persistence14/Recipes/Reactions/medicine.yml b/Resources/Prototypes/_Persistence14/Recipes/Reactions/medicine.yml index aa647c2bc0..402d959343 100644 --- a/Resources/Prototypes/_Persistence14/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/_Persistence14/Recipes/Reactions/medicine.yml @@ -16,4 +16,32 @@ products: Omnizine: 1 Acetone: 1 - Radium: 2 \ No newline at end of file + Radium: 2 + +- type: reaction + id: Pyronitrodone + minTemp: 370 + reactants: + Nitrogen: + amount: 2 + Oil: + amount: 1 + TranexamicAcid: + amount: 1 + products: + Pyronitrodone: 4 + +- type: reaction + id: Noxapyrone + minTemp: 400 + reactants: + Plasma: + amount: 1 + Benzene: + amount: 1 + Pyronitrodone: + amount: 1 + Silicon: + amount: 1 + products: + Noxapyrone: 2 \ No newline at end of file