From a1b11009836fae934ae4fc61ba9d598d09b1a516 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Sun, 6 Feb 2022 21:28:18 +0000 Subject: [PATCH 1/2] allergy rebuff --- code/modules/mob/living/carbon/human/species/species.dm | 2 +- .../living/carbon/human/species/station/traits_vr/neutral.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index af37afcfaaa..7b70d2ae344 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -54,7 +54,7 @@ var/taste_sensitivity = TASTE_NORMAL // How sensitive the species is to minute tastes. var/allergens = null // Things that will make this species very sick var/allergen_reaction = AG_TOX_DMG|AG_OXY_DMG|AG_EMOTE|AG_PAIN|AG_WEAKEN // What type of reactions will you have? These the 'main' options and are intended to approximate anaphylactic shock at high doses. - var/allergen_damage_severity = 1.2 // How bad are reactions to the allergen? Touch with extreme caution. + var/allergen_damage_severity = 3.6 // How bad are reactions to the allergen? Touch with extreme caution. var/allergen_disable_severity = 3 // Whilst this determines how long nonlethal effects last and how common emotes are. var/min_age = 17 diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm index 948962d88ab..461226678a1 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm @@ -251,7 +251,7 @@ desc = "This trait halves the lethality of allergen reactions. If you don't have any allergens set, it does nothing. It does not apply to nonlethal reactions or special reactions (such as unathi drowsiness from sugars)." cost = 0 custom_only = FALSE - var_changes = list("allergen_damage_severity" = 0.6) + var_changes = list("allergen_damage_severity" = 1.2) // Spicy Food Traits, from negative to positive. /datum/trait/neutral/spice_intolerance_extreme From 18169803b95b84a9858146da0f038e15ca705c59 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Sun, 6 Feb 2022 21:30:20 +0000 Subject: [PATCH 2/2] allergen hardmode --- .../carbon/human/species/station/traits_vr/neutral.dm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm index 461226678a1..73987c14cd0 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm @@ -248,11 +248,18 @@ /datum/trait/neutral/allergen_reduced_effect name = "Reduced Allergen Reaction" - desc = "This trait halves the lethality of allergen reactions. If you don't have any allergens set, it does nothing. It does not apply to nonlethal reactions or special reactions (such as unathi drowsiness from sugars)." + desc = "This trait drastically reduces the lethality of allergen reactions. If you don't have any allergens set, it does nothing. It does not apply to nonlethal reactions or special reactions (such as unathi drowsiness from sugars)." cost = 0 custom_only = FALSE var_changes = list("allergen_damage_severity" = 1.2) +/datum/trait/neutral/allergen_increased_effect + name = "Increased Allergen Reaction" + desc = "This trait drastically increases the lethality of allergen reactions. If you don't have any allergens set, it does nothing. It does not apply to nonlethal reactions or special reactions (such as unathi drowsiness from sugars)." + cost = 0 + custom_only = FALSE + var_changes = list("allergen_damage_severity" = 7.2) + // Spicy Food Traits, from negative to positive. /datum/trait/neutral/spice_intolerance_extreme name = "Spice Intolerance, Extreme"