diff --git a/Resources/Locale/en-US/reagents/generic.ftl b/Resources/Locale/en-US/reagents/generic.ftl index c96e03d4d8..cda4e434d3 100644 --- a/Resources/Locale/en-US/reagents/generic.ftl +++ b/Resources/Locale/en-US/reagents/generic.ftl @@ -1,3 +1,6 @@ ### Messages that can be utilized by multiple reagents. generic-reagent-effect-burning-insides = You feel your insides burning up! +generic-reagent-effect-burning-eyes = Your eyes begin to slightly burn. +generic-reagent-effect-burning-eyes-a-bit = Your eyes burn a bit. +generic-reagent-effect-tearing-up = Your eyes start to tear up. \ No newline at end of file diff --git a/Resources/Locale/en-US/reagents/meta/narcotics.ftl b/Resources/Locale/en-US/reagents/meta/narcotics.ftl index 8d913894cc..146288a30a 100644 --- a/Resources/Locale/en-US/reagents/meta/narcotics.ftl +++ b/Resources/Locale/en-US/reagents/meta/narcotics.ftl @@ -24,3 +24,6 @@ reagent-desc-nocturine = Makes you feel very tired and unable to stand up. Basic reagent-name-mute-toxin = mute toxin reagent-desc-mute-toxin = Makes you unable to talk while metabolizing. + +reagent-name-norepinephric-acid = norepinephric acid +reagent-desc-norepinephric-acid = Makes you unable to see while metabolizing. \ No newline at end of file diff --git a/Resources/Locale/en-US/reagents/norepinephricacid.ftl b/Resources/Locale/en-US/reagents/norepinephricacid.ftl new file mode 100644 index 0000000000..da06315c0b --- /dev/null +++ b/Resources/Locale/en-US/reagents/norepinephricacid.ftl @@ -0,0 +1,8 @@ +norepinephricacid-effect-eyelids = Your eyelids are rapidly twitching. +norepinephricacid-effect-eyes-itch = Your eyes feel itchy. +norepinephricacid-effect-vision-fade = You feel your vision fading. +norepinephricacid-effect-vision-fail = You can feel your vision failing you. +norepinephricacid-effect-eye-pain = You feel a deep pain in your eyes! +norepinephricacid-effect-blindness = Your eyes cease function! +norepinephricacid-effect-darkness = You are plunged into a world of darkness! +norepinephricacid-effect-eye-disconnect = Your eyes feel like they're disconnecting! \ No newline at end of file diff --git a/Resources/Prototypes/Reagents/narcotics.yml b/Resources/Prototypes/Reagents/narcotics.yml index c531b90b0c..7b96e8c4fb 100644 --- a/Resources/Prototypes/Reagents/narcotics.yml +++ b/Resources/Prototypes/Reagents/narcotics.yml @@ -205,3 +205,47 @@ - !type:GenericStatusEffect key: Muted component: Muted + +- type: reagent + id: NorepinephricAcid + name: reagent-name-norepinephric-acid + group: Narcotics + desc: reagent-desc-norepinephric-acid + physicalDesc: reagent-physical-desc-milky + flavor: salty + color: "#96a8b5" + boilingPoint: 255.0 + meltingPoint: 36.0 + metabolisms: + Narcotic: + effects: + - !type:PopupMessage + type: Local + messages: + - generic-reagent-effect-burning-eyes + - generic-reagent-effect-burning-eyes-a-bit + - generic-reagent-effect-tearing-up + - norepinephricacid-effect-eyelids + - norepinephricacid-effect-eyes-itch + - norepinephricacid-effect-vision-fade + - norepinephricacid-effect-vision-fail + probability: 0.08 + - !type:PopupMessage + visualType: MediumCaution + type: Local + messages: + - norepinephricacid-effect-eye-disconnect + - norepinephricacid-effect-eye-pain + - norepinephricacid-effect-darkness + - norepinephricacid-effect-blindness + conditions: + - !type:ReagentThreshold + min: 20 + probability: 0.03 + #If anyone wants to add a light dimming or grayscale effect when under 20u, be my guest + - !type:GenericStatusEffect + key: TemporaryBlindness + component: TemporaryBlindness + conditions: + - !type:ReagentThreshold + min: 20 \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index 505e8b6bbe..caacb0ef55 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -348,4 +348,17 @@ Ash: amount: 1 products: - Charcoal: 1 \ No newline at end of file + Charcoal: 1 + +- type: reaction + id: NorepinephricAcid + impact: Medium + reactants: + Uranium: + amount: 2 + Hydrogen: + amount: 1 + Oxygen: + amount: 1 + products: + NorepinephricAcid: 2 \ No newline at end of file